Compare commits

...

5 Commits

85 changed files with 1000 additions and 354 deletions

BIN
assets/icons/don.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

BIN
assets/icons/hubris.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -43,16 +43,23 @@ export class WastelandActorSheet extends ActorSheet {
armes: duplicate(this.actor.getWeapons()),
protections: duplicate(this.actor.getArmors()),
pouvoirs:duplicate(this.actor.getPouvoirs()),
dons: duplicate(this.actor.getDons()),
hubrises: duplicate(this.actor.getHubris()),
tours:duplicate(this.actor.getTours()),
artifex: duplicate(this.actor.getArtifex()),
charmes:duplicate(this.actor.getCharmes()),
peuple: duplicate(this.actor.getPeuple() || {}),
origine: duplicate(this.actor.getOrigine() || {}),
heritage: duplicate(this.actor.getHeritage() || {}),
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()),
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,

View File

@@ -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);
@@ -116,9 +117,21 @@ export class WastelandActor extends Actor {
WastelandUtility.sortArrayObjectsByName(items)
return items
}
getArtifex() {
return this.getItemSorted(["artifex"])
}
getCapacites() {
return this.getItemSorted(["capacite"])
}
getPouvoirs() {
return this.getItemSorted(["pouvoir"])
}
getDons() {
return this.getItemSorted(["don"])
}
getHubris() {
return this.getItemSorted(["hubris"])
}
getEquipments() {
return this.getItemSorted(["equipement"])
}
@@ -128,6 +141,9 @@ export class WastelandActor extends Actor {
getArmors() {
return this.getItemSorted(["protection"])
}
getPeuple() {
return this.items.find(item => item.type == "peuple")
}
getOrigine() {
return this.items.find(item => item.type == "origine")
}
@@ -203,7 +219,7 @@ export class WastelandActor extends Actor {
if (this.system.sante.base != newSante) {
this.update({ 'system.sante.base': newSante })
}
let newPsyche = (this.system.attributs.cla.value + this.system.attributs.tre.value) * this.system.biodata.psychemultiplier + 5
let newPsyche = ((this.system.attributs.cla.value + this.system.attributs.tre.value) * 2) + 5
if (this.system.psyche.fullmax != newPsyche) {
this.update({ 'system.psyche.fullmax': newPsyche })
}

View File

@@ -6,7 +6,17 @@ export const WASTELAND_CONFIG = {
"echo": "Chemin des Échos",
"reflet": "Chemin des Reflets",
"ame": "Chemin des Âmes",
"mort": "Chemin des Morts"
"mort": "Chemin des Morts",
"vie": "Chemin de Vie",
"guerre": "Chemin des guerres",
"horizon": "Chemin vers l'horizon",
"voleurinvisible": "Chemin du Voleur invisible",
"nuit": "Chemin des Nuits",
"oiseaux": "Chemin des Oiseaux"
},
hubrisType: {
"mental": "Mental",
"physique": "Physique",
},
charmetype: {
tour: "Tour",
@@ -20,4 +30,11 @@ export const WASTELAND_CONFIG = {
"1d12": "1d12",
"1d20": "1d20",
},
artifexType: {
"vapeur": "Vapeur",
"mecanique": "Mécanique",
"chimie": "Chimie",
"electricite": "Électricité",
"chimerie": "Chimérie",
}
}

View 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
});
}
}

View File

@@ -16,6 +16,9 @@ export const defaultItemImg = {
artifex: "systems/fvtt-wasteland/assets/icons/artifact.webp",
heritage: "systems/fvtt-wasteland/assets/icons/legacy.webp",
charme: "systems/fvtt-wasteland/assets/icons/charm.webp",
peuple: "systems/fvtt-wasteland/assets/icons/people.webp",
don: "systems/fvtt-wasteland/assets/icons/don.webp",
hubris: "systems/fvtt-wasteland/assets/icons/hubris.webp",
}
/**

View File

@@ -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 })

View File

@@ -1 +1 @@
MANIFEST-000062
MANIFEST-000094

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.855274 7fef57fff6c0 Recovering log #60
2023/11/30-18:21:36.866688 7fef57fff6c0 Delete type=3 #58
2023/11/30-18:21:36.866781 7fef57fff6c0 Delete type=0 #60
2023/11/30-18:49:35.135280 7fef56ffd6c0 Level-0 table #65: started
2023/11/30-18:49:35.135323 7fef56ffd6c0 Level-0 table #65: 0 bytes OK
2023/11/30-18:49:35.141534 7fef56ffd6c0 Delete type=0 #63
2023/11/30-18:49:35.147977 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.158510 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.900760 7f78c67fc6c0 Recovering log #92
2023/12/02-08:51:29.958288 7f78c67fc6c0 Delete type=3 #90
2023/12/02-08:51:29.958401 7f78c67fc6c0 Delete type=0 #92
2023/12/02-09:03:37.930194 7f78c57fa6c0 Level-0 table #97: started
2023/12/02-09:03:37.930255 7f78c57fa6c0 Level-0 table #97: 0 bytes OK
2023/12/02-09:03:37.987334 7f78c57fa6c0 Delete type=0 #95
2023/12/02-09:03:38.062545 7f78c57fa6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/02-09:03:38.062604 7f78c57fa6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.854083 7fef577fe6c0 Recovering log #56
2023/11/30-18:16:10.864730 7fef577fe6c0 Delete type=3 #54
2023/11/30-18:16:10.864777 7fef577fe6c0 Delete type=0 #56
2023/11/30-18:21:06.588537 7fef56ffd6c0 Level-0 table #61: started
2023/11/30-18:21:06.588573 7fef56ffd6c0 Level-0 table #61: 0 bytes OK
2023/11/30-18:21:06.595192 7fef56ffd6c0 Delete type=0 #59
2023/11/30-18:21:06.615698 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.615781 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.386344 7f78c77fe6c0 Recovering log #88
2023/12/02-08:42:44.397486 7f78c77fe6c0 Delete type=3 #86
2023/12/02-08:42:44.397786 7f78c77fe6c0 Delete type=0 #88
2023/12/02-08:51:17.782518 7f78c57fa6c0 Level-0 table #93: started
2023/12/02-08:51:17.782561 7f78c57fa6c0 Level-0 table #93: 0 bytes OK
2023/12/02-08:51:17.816144 7f78c57fa6c0 Delete type=0 #91
2023/12/02-08:51:17.875724 7f78c57fa6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.875802 7f78c57fa6c0 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-000094 Normal file

Binary file not shown.

Binary file not shown.

BIN
packs/equipement/000027.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000014
MANIFEST-000048

View File

@@ -1,15 +1,8 @@
2023/11/30-18:21:36.889079 7fef577fe6c0 Recovering log #12
2023/11/30-18:21:36.901449 7fef577fe6c0 Delete type=3 #10
2023/11/30-18:21:36.901569 7fef577fe6c0 Delete type=0 #12
2023/11/30-18:49:35.147989 7fef56ffd6c0 Level-0 table #17: started
2023/11/30-18:49:35.151764 7fef56ffd6c0 Level-0 table #17: 20487 bytes OK
2023/11/30-18:49:35.158381 7fef56ffd6c0 Delete type=0 #15
2023/11/30-18:49:35.164655 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.172440 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at '!items!y47dBO3Mf5Pn7tOd' @ 120 : 1
2023/11/30-18:49:35.172458 7fef56ffd6c0 Compacting 1@1 + 1@2 files
2023/11/30-18:49:35.176393 7fef56ffd6c0 Generated table #18@1: 65 keys, 10984 bytes
2023/11/30-18:49:35.176421 7fef56ffd6c0 Compacted 1@1 + 1@2 files => 10984 bytes
2023/11/30-18:49:35.182314 7fef56ffd6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2023/11/30-18:49:35.182554 7fef56ffd6c0 Delete type=2 #5
2023/11/30-18:49:35.182658 7fef56ffd6c0 Delete type=2 #17
2023/11/30-18:49:35.182755 7fef56ffd6c0 Manual compaction at level-1 from '!items!y47dBO3Mf5Pn7tOd' @ 120 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/12/02-08:51:30.032259 7f78c5ffb6c0 Recovering log #46
2023/12/02-08:51:30.074066 7f78c5ffb6c0 Delete type=3 #44
2023/12/02-08:51:30.074197 7f78c5ffb6c0 Delete type=0 #46
2023/12/02-09:03:37.987661 7f78c57fa6c0 Level-0 table #51: started
2023/12/02-09:03:37.987715 7f78c57fa6c0 Level-0 table #51: 0 bytes OK
2023/12/02-09:03:38.062000 7f78c57fa6c0 Delete type=0 #49
2023/12/02-09:03:38.062562 7f78c57fa6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2023/12/02-09:03:38.062618 7f78c57fa6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.880052 7ff1ed3ff6c0 Recovering log #8
2023/11/30-18:16:10.890830 7ff1ed3ff6c0 Delete type=3 #6
2023/11/30-18:16:10.890879 7ff1ed3ff6c0 Delete type=0 #8
2023/11/30-18:21:06.602088 7fef56ffd6c0 Level-0 table #13: started
2023/11/30-18:21:06.602112 7fef56ffd6c0 Level-0 table #13: 0 bytes OK
2023/11/30-18:21:06.608264 7fef56ffd6c0 Delete type=0 #11
2023/11/30-18:21:06.615743 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.615814 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.416036 7f78c67fc6c0 Recovering log #42
2023/12/02-08:42:44.426686 7f78c67fc6c0 Delete type=3 #40
2023/12/02-08:42:44.426819 7f78c67fc6c0 Delete type=0 #42
2023/12/02-08:51:17.906775 7f78c57fa6c0 Level-0 table #47: started
2023/12/02-08:51:17.906841 7f78c57fa6c0 Level-0 table #47: 0 bytes OK
2023/12/02-08:51:17.947064 7f78c57fa6c0 Delete type=0 #45
2023/12/02-08:51:17.969524 7f78c57fa6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.969562 7f78c57fa6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000086
MANIFEST-000118

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.803753 7ff1ed3ff6c0 Recovering log #84
2023/11/30-18:21:36.814923 7ff1ed3ff6c0 Delete type=3 #82
2023/11/30-18:21:36.815015 7ff1ed3ff6c0 Delete type=0 #84
2023/11/30-18:49:35.114429 7fef56ffd6c0 Level-0 table #89: started
2023/11/30-18:49:35.114452 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
2023/11/30-18:49:35.121805 7fef56ffd6c0 Delete type=0 #87
2023/11/30-18:49:35.128443 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.135263 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.730107 7f78c77fe6c0 Recovering log #116
2023/12/02-08:51:29.784863 7f78c77fe6c0 Delete type=3 #114
2023/12/02-08:51:29.784945 7f78c77fe6c0 Delete type=0 #116
2023/12/02-09:03:37.768298 7f78c57fa6c0 Level-0 table #121: started
2023/12/02-09:03:37.768372 7f78c57fa6c0 Level-0 table #121: 0 bytes OK
2023/12/02-09:03:37.811243 7f78c57fa6c0 Delete type=0 #119
2023/12/02-09:03:37.849332 7f78c57fa6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/02-09:03:37.849402 7f78c57fa6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.818907 7fef57fff6c0 Recovering log #80
2023/11/30-18:16:10.828865 7fef57fff6c0 Delete type=3 #78
2023/11/30-18:16:10.828914 7fef57fff6c0 Delete type=0 #80
2023/11/30-18:21:06.568781 7fef56ffd6c0 Level-0 table #85: started
2023/11/30-18:21:06.568803 7fef56ffd6c0 Level-0 table #85: 0 bytes OK
2023/11/30-18:21:06.574880 7fef56ffd6c0 Delete type=0 #83
2023/11/30-18:21:06.588330 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.588357 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.342271 7f78c5ffb6c0 Recovering log #112
2023/12/02-08:42:44.352667 7f78c5ffb6c0 Delete type=3 #110
2023/12/02-08:42:44.352759 7f78c5ffb6c0 Delete type=0 #112
2023/12/02-08:51:17.727952 7f78c57fa6c0 Level-0 table #117: started
2023/12/02-08:51:17.728001 7f78c57fa6c0 Level-0 table #117: 0 bytes OK
2023/12/02-08:51:17.752694 7f78c57fa6c0 Delete type=0 #115
2023/12/02-08:51:17.752885 7f78c57fa6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.752927 7f78c57fa6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000086
MANIFEST-000118

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.819958 7fef577fe6c0 Recovering log #84
2023/11/30-18:21:36.830750 7fef577fe6c0 Delete type=3 #82
2023/11/30-18:21:36.830843 7fef577fe6c0 Delete type=0 #84
2023/11/30-18:49:35.122004 7fef56ffd6c0 Level-0 table #89: started
2023/11/30-18:49:35.122052 7fef56ffd6c0 Level-0 table #89: 0 bytes OK
2023/11/30-18:49:35.128309 7fef56ffd6c0 Delete type=0 #87
2023/11/30-18:49:35.135245 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.141637 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.787548 7f78c5ffb6c0 Recovering log #116
2023/12/02-08:51:29.842272 7f78c5ffb6c0 Delete type=3 #114
2023/12/02-08:51:29.842443 7f78c5ffb6c0 Delete type=0 #116
2023/12/02-09:03:37.811443 7f78c57fa6c0 Level-0 table #121: started
2023/12/02-09:03:37.811506 7f78c57fa6c0 Level-0 table #121: 0 bytes OK
2023/12/02-09:03:37.849107 7f78c57fa6c0 Delete type=0 #119
2023/12/02-09:03:37.849369 7f78c57fa6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/02-09:03:37.849421 7f78c57fa6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.830474 7ff1ed3ff6c0 Recovering log #80
2023/11/30-18:16:10.840304 7ff1ed3ff6c0 Delete type=3 #78
2023/11/30-18:16:10.840352 7ff1ed3ff6c0 Delete type=0 #80
2023/11/30-18:21:06.575010 7fef56ffd6c0 Level-0 table #85: started
2023/11/30-18:21:06.575038 7fef56ffd6c0 Level-0 table #85: 0 bytes OK
2023/11/30-18:21:06.581568 7fef56ffd6c0 Delete type=0 #83
2023/11/30-18:21:06.588349 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.588448 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.356097 7f78c67fc6c0 Recovering log #112
2023/12/02-08:42:44.366888 7f78c67fc6c0 Delete type=3 #110
2023/12/02-08:42:44.367238 7f78c67fc6c0 Delete type=0 #112
2023/12/02-08:51:17.753036 7f78c57fa6c0 Level-0 table #117: started
2023/12/02-08:51:17.753102 7f78c57fa6c0 Level-0 table #117: 0 bytes OK
2023/12/02-08:51:17.782363 7f78c57fa6c0 Delete type=0 #115
2023/12/02-08:51:17.875696 7f78c57fa6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.875784 7f78c57fa6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000087
MANIFEST-000119

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.788559 7fef57fff6c0 Recovering log #85
2023/11/30-18:21:36.800142 7fef57fff6c0 Delete type=3 #83
2023/11/30-18:21:36.800237 7fef57fff6c0 Delete type=0 #85
2023/11/30-18:49:35.108381 7fef56ffd6c0 Level-0 table #90: started
2023/11/30-18:49:35.108404 7fef56ffd6c0 Level-0 table #90: 0 bytes OK
2023/11/30-18:49:35.114322 7fef56ffd6c0 Delete type=0 #88
2023/11/30-18:49:35.121969 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.128463 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.664329 7f78c6ffd6c0 Recovering log #117
2023/12/02-08:51:29.726497 7f78c6ffd6c0 Delete type=3 #115
2023/12/02-08:51:29.726587 7f78c6ffd6c0 Delete type=0 #117
2023/12/02-09:03:37.724445 7f78c57fa6c0 Level-0 table #122: started
2023/12/02-09:03:37.724494 7f78c57fa6c0 Level-0 table #122: 0 bytes OK
2023/12/02-09:03:37.768076 7f78c57fa6c0 Delete type=0 #120
2023/12/02-09:03:37.849309 7f78c57fa6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/02-09:03:37.849384 7f78c57fa6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.807103 7fef577fe6c0 Recovering log #81
2023/11/30-18:16:10.816975 7fef577fe6c0 Delete type=3 #79
2023/11/30-18:16:10.817062 7fef577fe6c0 Delete type=0 #81
2023/11/30-18:21:06.562024 7fef56ffd6c0 Level-0 table #86: started
2023/11/30-18:21:06.562050 7fef56ffd6c0 Level-0 table #86: 0 bytes OK
2023/11/30-18:21:06.568662 7fef56ffd6c0 Delete type=0 #84
2023/11/30-18:21:06.581705 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.588339 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.326574 7f78c77fe6c0 Recovering log #113
2023/12/02-08:42:44.337267 7f78c77fe6c0 Delete type=3 #111
2023/12/02-08:42:44.337357 7f78c77fe6c0 Delete type=0 #113
2023/12/02-08:51:17.693658 7f78c57fa6c0 Level-0 table #118: started
2023/12/02-08:51:17.693712 7f78c57fa6c0 Level-0 table #118: 0 bytes OK
2023/12/02-08:51:17.727696 7f78c57fa6c0 Delete type=0 #116
2023/12/02-08:51:17.752843 7f78c57fa6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.752897 7f78c57fa6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)

Binary file not shown.

BIN
packs/pouvoirs/000026.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000002
MANIFEST-000035

View File

@@ -1,5 +1,8 @@
2023/11/30-18:21:36.784020 7ff1ecbfe6c0 Delete type=3 #1
2023/11/30-18:49:35.089939 7fef56ffd6c0 Level-0 table #5: started
2023/11/30-18:49:35.094204 7fef56ffd6c0 Level-0 table #5: 38311 bytes OK
2023/11/30-18:49:35.100869 7fef56ffd6c0 Delete type=0 #3
2023/11/30-18:49:35.114408 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.579667 7f78c67fc6c0 Recovering log #33
2023/12/02-08:51:29.659353 7f78c67fc6c0 Delete type=3 #31
2023/12/02-08:51:29.659487 7f78c67fc6c0 Delete type=0 #33
2023/12/02-09:03:37.691401 7f78c57fa6c0 Level-0 table #38: started
2023/12/02-09:03:37.691476 7f78c57fa6c0 Level-0 table #38: 0 bytes OK
2023/12/02-09:03:37.723839 7f78c57fa6c0 Delete type=0 #36
2023/12/02-09:03:37.811417 7f78c57fa6c0 Manual compaction at level-0 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
2023/12/02-09:03:37.849353 7f78c57fa6c0 Manual compaction at level-1 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)

8
packs/pouvoirs/LOG.old Normal file
View File

@@ -0,0 +1,8 @@
2023/12/02-08:42:44.310445 7f78c6ffd6c0 Recovering log #29
2023/12/02-08:42:44.321462 7f78c6ffd6c0 Delete type=3 #27
2023/12/02-08:42:44.321559 7f78c6ffd6c0 Delete type=0 #29
2023/12/02-08:51:17.673498 7f78c57fa6c0 Level-0 table #34: started
2023/12/02-08:51:17.673593 7f78c57fa6c0 Level-0 table #34: 0 bytes OK
2023/12/02-08:51:17.693433 7f78c57fa6c0 Delete type=0 #32
2023/12/02-08:51:17.727930 7f78c57fa6c0 Manual compaction at level-0 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.752872 7f78c57fa6c0 Manual compaction at level-1 from '!folders!9W8gPB3T9u9dGfXl' @ 72057594037927935 : 1 .. '!items!zew9hPVdne6w1FFv' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000123
MANIFEST-000155

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.872786 7ff1ed3ff6c0 Recovering log #121
2023/11/30-18:21:36.884494 7ff1ed3ff6c0 Delete type=3 #119
2023/11/30-18:21:36.884617 7ff1ed3ff6c0 Delete type=0 #121
2023/11/30-18:49:35.141647 7fef56ffd6c0 Level-0 table #126: started
2023/11/30-18:49:35.141670 7fef56ffd6c0 Level-0 table #126: 0 bytes OK
2023/11/30-18:49:35.147854 7fef56ffd6c0 Delete type=0 #124
2023/11/30-18:49:35.158499 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.164666 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.962121 7f78c6ffd6c0 Recovering log #153
2023/12/02-08:51:30.029029 7f78c6ffd6c0 Delete type=3 #151
2023/12/02-08:51:30.029178 7f78c6ffd6c0 Delete type=0 #153
2023/12/02-09:03:37.893808 7f78c57fa6c0 Level-0 table #158: started
2023/12/02-09:03:37.893864 7f78c57fa6c0 Level-0 table #158: 0 bytes OK
2023/12/02-09:03:37.929966 7f78c57fa6c0 Delete type=0 #156
2023/12/02-09:03:38.062529 7f78c57fa6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/02-09:03:38.062592 7f78c57fa6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.866916 7fef57fff6c0 Recovering log #117
2023/11/30-18:16:10.876312 7fef57fff6c0 Delete type=3 #115
2023/11/30-18:16:10.876370 7fef57fff6c0 Delete type=0 #117
2023/11/30-18:21:06.595304 7fef56ffd6c0 Level-0 table #122: started
2023/11/30-18:21:06.595352 7fef56ffd6c0 Level-0 table #122: 0 bytes OK
2023/11/30-18:21:06.601986 7fef56ffd6c0 Delete type=0 #120
2023/11/30-18:21:06.615721 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.615797 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.401530 7f78c5ffb6c0 Recovering log #149
2023/12/02-08:42:44.412735 7f78c5ffb6c0 Delete type=3 #147
2023/12/02-08:42:44.412878 7f78c5ffb6c0 Delete type=0 #149
2023/12/02-08:51:17.845739 7f78c57fa6c0 Level-0 table #154: started
2023/12/02-08:51:17.845793 7f78c57fa6c0 Level-0 table #154: 0 bytes OK
2023/12/02-08:51:17.875464 7f78c57fa6c0 Delete type=0 #152
2023/12/02-08:51:17.875767 7f78c57fa6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.875851 7f78c57fa6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000062
MANIFEST-000094

View File

@@ -1,7 +1,7 @@
2023/11/30-18:21:36.924022 7fef57fff6c0 Recovering log #60
2023/11/30-18:21:36.935221 7fef57fff6c0 Delete type=3 #58
2023/11/30-18:21:36.935295 7fef57fff6c0 Delete type=0 #60
2023/11/30-18:49:35.164676 7fef56ffd6c0 Level-0 table #65: started
2023/11/30-18:49:35.164700 7fef56ffd6c0 Level-0 table #65: 0 bytes OK
2023/11/30-18:49:35.172206 7fef56ffd6c0 Delete type=0 #63
2023/11/30-18:49:35.182719 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2023/12/02-08:51:30.143235 7f78c67fc6c0 Recovering log #92
2023/12/02-08:51:30.194801 7f78c67fc6c0 Delete type=3 #90
2023/12/02-08:51:30.194953 7f78c67fc6c0 Delete type=0 #92
2023/12/02-09:03:38.062740 7f78c57fa6c0 Level-0 table #97: started
2023/12/02-09:03:38.062788 7f78c57fa6c0 Level-0 table #97: 0 bytes OK
2023/12/02-09:03:38.124529 7f78c57fa6c0 Delete type=0 #95
2023/12/02-09:03:38.613587 7f78c57fa6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2023/11/30-18:16:10.905416 7fef577fe6c0 Recovering log #56
2023/11/30-18:16:10.915393 7fef577fe6c0 Delete type=3 #54
2023/11/30-18:16:10.915437 7fef577fe6c0 Delete type=0 #56
2023/11/30-18:21:06.615938 7fef56ffd6c0 Level-0 table #61: started
2023/11/30-18:21:06.615988 7fef56ffd6c0 Level-0 table #61: 0 bytes OK
2023/11/30-18:21:06.622379 7fef56ffd6c0 Delete type=0 #59
2023/11/30-18:21:06.622501 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.446230 7f78c77fe6c0 Recovering log #88
2023/12/02-08:42:44.457608 7f78c77fe6c0 Delete type=3 #86
2023/12/02-08:42:44.457729 7f78c77fe6c0 Delete type=0 #88
2023/12/02-08:51:17.947345 7f78c57fa6c0 Level-0 table #93: started
2023/12/02-08:51:17.947408 7f78c57fa6c0 Level-0 table #93: 0 bytes OK
2023/12/02-08:51:17.968940 7f78c57fa6c0 Delete type=0 #91
2023/12/02-08:51:17.969544 7f78c57fa6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000123
MANIFEST-000155

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.753731 7fef577fe6c0 Recovering log #121
2023/11/30-18:21:36.764771 7fef577fe6c0 Delete type=3 #119
2023/11/30-18:21:36.764855 7fef577fe6c0 Delete type=0 #121
2023/11/30-18:49:35.101125 7fef56ffd6c0 Level-0 table #126: started
2023/11/30-18:49:35.101183 7fef56ffd6c0 Level-0 table #126: 0 bytes OK
2023/11/30-18:49:35.108265 7fef56ffd6c0 Delete type=0 #124
2023/11/30-18:49:35.114420 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.121988 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.525902 7f78c5ffb6c0 Recovering log #153
2023/12/02-08:51:29.575506 7f78c5ffb6c0 Delete type=3 #151
2023/12/02-08:51:29.575594 7f78c5ffb6c0 Delete type=0 #153
2023/12/02-09:03:37.590262 7f78c57fa6c0 Level-0 table #158: started
2023/12/02-09:03:37.590331 7f78c57fa6c0 Level-0 table #158: 0 bytes OK
2023/12/02-09:03:37.622631 7f78c57fa6c0 Delete type=0 #156
2023/12/02-09:03:37.622884 7f78c57fa6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/02-09:03:37.691353 7f78c57fa6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.794968 7ff1ecbfe6c0 Recovering log #117
2023/11/30-18:16:10.804558 7ff1ecbfe6c0 Delete type=3 #115
2023/11/30-18:16:10.804611 7ff1ecbfe6c0 Delete type=0 #117
2023/11/30-18:21:06.545111 7fef56ffd6c0 Level-0 table #122: started
2023/11/30-18:21:06.545138 7fef56ffd6c0 Level-0 table #122: 0 bytes OK
2023/11/30-18:21:06.552078 7fef56ffd6c0 Delete type=0 #120
2023/11/30-18:21:06.552210 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.562010 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.296865 7f78c67fc6c0 Recovering log #149
2023/12/02-08:42:44.307148 7f78c67fc6c0 Delete type=3 #147
2023/12/02-08:42:44.307236 7f78c67fc6c0 Delete type=0 #149
2023/12/02-08:51:17.633133 7f78c57fa6c0 Level-0 table #154: started
2023/12/02-08:51:17.633180 7f78c57fa6c0 Level-0 table #154: 0 bytes OK
2023/12/02-08:51:17.673194 7f78c57fa6c0 Delete type=0 #152
2023/12/02-08:51:17.727906 7f78c57fa6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.752858 7f78c57fa6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000122
MANIFEST-000154

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.909001 7ff1ecbfe6c0 Recovering log #120
2023/11/30-18:21:36.920328 7ff1ecbfe6c0 Delete type=3 #118
2023/11/30-18:21:36.920419 7ff1ecbfe6c0 Delete type=0 #120
2023/11/30-18:49:35.158520 7fef56ffd6c0 Level-0 table #125: started
2023/11/30-18:49:35.158545 7fef56ffd6c0 Level-0 table #125: 0 bytes OK
2023/11/30-18:49:35.164559 7fef56ffd6c0 Delete type=0 #123
2023/11/30-18:49:35.172400 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.182730 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/02-08:51:30.078494 7f78c77fe6c0 Recovering log #152
2023/12/02-08:51:30.138898 7f78c77fe6c0 Delete type=3 #150
2023/12/02-08:51:30.139008 7f78c77fe6c0 Delete type=0 #152
2023/12/02-09:03:38.124767 7f78c57fa6c0 Level-0 table #157: started
2023/12/02-09:03:38.124827 7f78c57fa6c0 Level-0 table #157: 0 bytes OK
2023/12/02-09:03:38.613128 7f78c57fa6c0 Delete type=0 #155
2023/12/02-09:03:38.613630 7f78c57fa6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/02-09:03:38.613696 7f78c57fa6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.892816 7ff1ecbfe6c0 Recovering log #116
2023/11/30-18:16:10.903040 7ff1ecbfe6c0 Delete type=3 #114
2023/11/30-18:16:10.903329 7ff1ecbfe6c0 Delete type=0 #116
2023/11/30-18:21:06.608405 7fef56ffd6c0 Level-0 table #121: started
2023/11/30-18:21:06.608435 7fef56ffd6c0 Level-0 table #121: 0 bytes OK
2023/11/30-18:21:06.615542 7fef56ffd6c0 Delete type=0 #119
2023/11/30-18:21:06.615760 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.615831 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.430802 7f78c6ffd6c0 Recovering log #148
2023/12/02-08:42:44.441587 7f78c6ffd6c0 Delete type=3 #146
2023/12/02-08:42:44.441707 7f78c6ffd6c0 Delete type=0 #148
2023/12/02-08:51:17.875998 7f78c57fa6c0 Level-0 table #153: started
2023/12/02-08:51:17.876079 7f78c57fa6c0 Level-0 table #153: 0 bytes OK
2023/12/02-08:51:17.906582 7f78c57fa6c0 Delete type=0 #151
2023/12/02-08:51:17.969498 7f78c57fa6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.969585 7f78c57fa6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000031
MANIFEST-000063

View File

@@ -1,8 +1,8 @@
2023/11/30-18:21:36.838437 7ff1ecbfe6c0 Recovering log #29
2023/11/30-18:21:36.850203 7ff1ecbfe6c0 Delete type=3 #27
2023/11/30-18:21:36.850294 7ff1ecbfe6c0 Delete type=0 #29
2023/11/30-18:49:35.128478 7fef56ffd6c0 Level-0 table #34: started
2023/11/30-18:49:35.128521 7fef56ffd6c0 Level-0 table #34: 0 bytes OK
2023/11/30-18:49:35.135109 7fef56ffd6c0 Delete type=0 #32
2023/11/30-18:49:35.141626 7fef56ffd6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/11/30-18:49:35.147962 7fef56ffd6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/12/02-08:51:29.845813 7f78c77fe6c0 Recovering log #61
2023/12/02-08:51:29.897886 7f78c77fe6c0 Delete type=3 #59
2023/12/02-08:51:29.898047 7f78c77fe6c0 Delete type=0 #61
2023/12/02-09:03:37.849611 7f78c57fa6c0 Level-0 table #66: started
2023/12/02-09:03:37.849656 7f78c57fa6c0 Level-0 table #66: 0 bytes OK
2023/12/02-09:03:37.893635 7f78c57fa6c0 Delete type=0 #64
2023/12/02-09:03:38.062508 7f78c57fa6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/12/02-09:03:38.062577 7f78c57fa6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)

View File

@@ -1,8 +1,8 @@
2023/11/30-18:16:10.842390 7ff1ecbfe6c0 Recovering log #25
2023/11/30-18:16:10.852006 7ff1ecbfe6c0 Delete type=3 #23
2023/11/30-18:16:10.852046 7ff1ecbfe6c0 Delete type=0 #25
2023/11/30-18:21:06.581724 7fef56ffd6c0 Level-0 table #30: started
2023/11/30-18:21:06.581770 7fef56ffd6c0 Level-0 table #30: 0 bytes OK
2023/11/30-18:21:06.588082 7fef56ffd6c0 Delete type=0 #28
2023/11/30-18:21:06.588389 7fef56ffd6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/11/30-18:21:06.588433 7fef56ffd6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/12/02-08:42:44.371031 7f78c6ffd6c0 Recovering log #57
2023/12/02-08:42:44.381725 7f78c6ffd6c0 Delete type=3 #55
2023/12/02-08:42:44.381848 7f78c6ffd6c0 Delete type=0 #57
2023/12/02-08:51:17.816310 7f78c57fa6c0 Level-0 table #62: started
2023/12/02-08:51:17.816350 7f78c57fa6c0 Level-0 table #62: 0 bytes OK
2023/12/02-08:51:17.845533 7f78c57fa6c0 Delete type=0 #60
2023/12/02-08:51:17.875746 7f78c57fa6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/12/02-08:51:17.875819 7f78c57fa6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)

View File

@@ -1358,4 +1358,9 @@ ul, li {
.item-controls-fixed {
min-width:3.2rem;
max-width: 3.2rem;
}
.predilection-text {
padding-left: 8px;
font-style: italic;
font-size: 0.6rem;
}

View File

@@ -1,7 +1,7 @@
{
"id": "fvtt-wasteland",
"description": "Wasteland RPG for FoundryVTT",
"version": "11.0.10",
"version": "11.0.15",
"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.10.zip",
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.15.zip",
"packs": [
{
"type": "Item",

View File

@@ -1,7 +1,8 @@
{
"Actor": {
"types": [
"personnage"
"personnage",
"creature"
],
"templates": {
"biodata": {
@@ -15,6 +16,8 @@
"sexe": "",
"yeux": "",
"description": "",
"habitat": "",
"comportement": "",
"psychemultiplier": 1,
"notes": "",
"gmnotes": ""
@@ -95,9 +98,10 @@
"core"
]
},
"pnj": {
"creature": {
"templates": [
"npccore"
"biodata",
"core"
]
}
},
@@ -122,141 +126,175 @@
"bouclier",
"charme",
"artifex",
"peuple"
"peuple",
"don",
"hubris"
],
"pouvoir": {
"chemin": "force",
"attribut": "cla",
"competence": "",
"seuil": 0,
"don": {
"coutpsyche": 0,
"complexite": 0,
"cible": "",
"duree": "",
"templates": [
"base"
]
},
"charme": {
"charmetype": "tour",
"resultats": [
{"value":-1, "description": ""},
{"value":-1, "description": ""},
{"value":-1, "description": ""},
{"value":-1, "description": ""},
{"value":-1, "description": ""},
{"value":-1, "description": ""}
],
"hubris": {
"hubristype": "mental",
"templates": [
"base"
]
},
"artifex": {
"artifextype": "vapeur",
"complexite": 0,
"dureerealisation": "",
"tempsmiseenroute": "",
"defautcourant": "",
"competence": "",
"templates": [
"base"
]
},
"mutation": {
"templates": [
"base"
]
},
"peuple": {
"templates": [
"base"
]
},
"origine": {
"templates": [
"base"
]
},
"heritage": {
"templates": [
"base"
]
},
"metier": {
"templates": [
"base"
]
},
"capacite": {
"templates": [
"base"
]
},
"equipement": {
"rarete": 0,
"prix": 0,
"templates": [
"base"
]
},
"arme": {
"typearme": "",
"isdefense": false,
"bonusmaniementoff": 0,
"bonusmaniementdef": 0,
"degats": "",
"nonletaux": false,
"deuxmains": false,
"courte": 0,
"moyenne": 0,
"longue": 0,
"tr": 0,
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"competence": {
"niveau": 0,
"attribut1": "",
"attribut2": "",
"attribut3": "",
"doublebonus": false,
"predilections": [],
"templates": [
"base"
]
},
"protection": {
"typeprotection": "",
"protection": 0,
"degats": "",
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"bouclier": {
"bonusdefense": 0,
"degats": "",
"nonletaux": false,
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"monnaie": {
"quantite": 0,
"unite": "",
"templates": [
"base"
]
}
"pouvoir": {
"chemin": "force",
"attribut": "cla",
"competence": "",
"seuil": 0,
"coutpsyche": 0,
"complexite": 0,
"cible": "",
"duree": "",
"formulesimple": "",
"formuleetendue": "",
"templates": [
"base"
]
},
"charme": {
"charmetype": "tour",
"resultats": [
{
"value": -1,
"description": ""
},
{
"value": -1,
"description": ""
},
{
"value": -1,
"description": ""
},
{
"value": -1,
"description": ""
},
{
"value": -1,
"description": ""
},
{
"value": -1,
"description": ""
}
],
"templates": [
"base"
]
},
"artifex": {
"artifextype": "vapeur",
"complexite": 0,
"dureerealisation": "",
"tempsmiseenroute": "",
"defautcourant": "",
"competence": "",
"templates": [
"base"
]
},
"mutation": {
"templates": [
"base"
]
},
"peuple": {
"templates": [
"base"
]
},
"origine": {
"templates": [
"base"
]
},
"heritage": {
"templates": [
"base"
]
},
"metier": {
"templates": [
"base"
]
},
"capacite": {
"templates": [
"base"
]
},
"equipement": {
"rarete": 0,
"prix": 0,
"templates": [
"base"
]
},
"arme": {
"typearme": "",
"isdefense": false,
"bonusmaniementoff": 0,
"bonusmaniementdef": 0,
"degats": "",
"nonletaux": false,
"deuxmains": false,
"courte": 0,
"moyenne": 0,
"longue": 0,
"tr": 0,
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"competence": {
"niveau": 0,
"attribut1": "",
"attribut2": "",
"attribut3": "",
"doublebonus": false,
"predilections": [],
"templates": [
"base"
]
},
"protection": {
"typeprotection": "",
"protection": 0,
"degats": "",
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"bouclier": {
"bonusdefense": 0,
"degats": "",
"nonletaux": false,
"rarete": 0,
"prix": 0,
"equipped": false,
"templates": [
"base"
]
},
"monnaie": {
"quantite": 0,
"unite": "",
"templates": [
"base"
]
}
}
}

View File

@@ -164,8 +164,17 @@
{{#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}}" />
<span class="item-name-label competence-name"><a class="roll-competence"
data-attr-key="tochoose">{{skill.name}}</a></span>
<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}}
@@ -231,7 +240,7 @@
</div>
</li>
{{#each pouvoirs as |pouvoir key|}}
<li class="item flexrow " data-item-id="{{pouvoir._id}}" data-item-type="don">
<li class="item flexrow " data-item-id="{{pouvoir._id}}" data-item-type="pouvoir">
<img class="item-name-img" src="{{pouvoir.img}}" />
<span class="item-field-label-long label-padding-left"><a class="roll-pouvoir">{{pouvoir.name}}</a></span>
<span class="item-field-label-medium">{{upperFirst pouvoir.system.chemin}}</span>
@@ -247,30 +256,6 @@
</ul>
</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-field-label-long-title">
<h3><label class="items-title-text">Charmes</label></h3>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</div>
</li>
{{#each charmes as |charme key|}}
<li class="item flexrow " data-item-id="{{charme._id}}" data-item-type="don">
<img class="item-name-img" src="{{charme.img}}" />
<span class="item-field-label-long label-padding-left">{{charme.name}}</span>
<div class="item-filler">&nbsp;</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 class="sheet-box color-bg-archetype">
<ul class="item-list alternate-list">
<li class="item flexrow list-item items-title-bg">
@@ -282,7 +267,7 @@
</div>
</li>
{{#each tours as |tour key|}}
<li class="item flexrow " data-item-id="{{tour._id}}" data-item-type="don">
<li class="item flexrow " data-item-id="{{tour._id}}" data-item-type="charme">
<img class="item-name-img" src="{{tour.img}}" />
<span class="item-field-label-long label-padding-left">
<a class="roll-charme">{{tour.name}}</a></span>
@@ -296,6 +281,30 @@
</ul>
</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-field-label-long-title">
<h3><label class="items-title-text">Charmes</label></h3>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</div>
</li>
{{#each charmes as |charme key|}}
<li class="item flexrow " data-item-id="{{charme._id}}" data-item-type="charme">
<img class="item-name-img" src="{{charme.img}}" />
<span class="item-field-label-long label-padding-left">{{charme.name}}</span>
<div class="item-filler">&nbsp;</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 class="sheet-box color-bg-archetype">
<ul class="item-list alternate-list">
<li class="item flexrow list-item items-title-bg">
@@ -307,7 +316,7 @@
</div>
</li>
{{#each mutations as |mutation key|}}
<li class="item flexrow " data-item-id="{{mutation._id}}" data-item-type="rune">
<li class="item flexrow " data-item-id="{{mutation._id}}" data-item-type="mutation">
<img class="item-name-img" src="{{mutation.img}}" />
<span class="item-field-label-long-title label-padding-left">{{mutation.name}}</span>
<div class="item-filler">&nbsp;</div>
@@ -320,6 +329,62 @@
</ul>
</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-field-label-long-title">
<h3><label class="items-title-text">Hubris</label></h3>
</span>
<span class="item-field-label-medium">
<label class="short-label">Type</label>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</div>
</li>
{{#each hubrises as |hubris key|}}
<li class="item flexrow " data-item-id="{{hubris._id}}" data-item-type="hubris">
<img class="item-name-img" src="{{hubris.img}}" />
<span class="item-field-label-long-title label-padding-left">{{hubris.name}}</span>
<span class="item-field-label-medium">{{upperFirst hubris.system.hubristype}}</span>
<div class="item-filler">&nbsp;</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 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">Dons</label></h3>
</span>
<span class="item-field-label-medium">
<label class="short-label">Cout Psyche</label>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</div>
</li>
{{#each dons as |don key|}}
<li class="item flexrow " data-item-id="{{don._id}}" data-item-type="don">
<img class="item-name-img" src="{{don.img}}" />
<span class="item-field-label-long-title label-padding-left">{{don.name}}</span>
<span class="item-field-label-medium">{{don.system.coutpsyche}}</span>
<div class="item-filler">&nbsp;</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>
@@ -459,6 +524,32 @@
</ul>
</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">Artifex</label></h3>
</span>
<div class="item-filler">&nbsp;</div>
<div class="item-controls item-controls-fixed">
<a class="item-control item-add" data-type="artifex" title="Ajouter un artifx"><i
class="fas fa-plus"></i></a>
</div>
</li>
{{#each artifex as |art key|}}
<li class="item flexrow " data-item-id="{{art._id}}" data-item-type="art">
<img class="item-name-img" src="{{art.img}}" />
<span class="item-name-label competence-name">{{art.name}}</span>
<div class="item-filler">&nbsp;</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 class="sheet-box color-bg-archetype">
<ul class="item-list alternate-list">
<li class="item flexrow list-item items-title-bg">
@@ -486,15 +577,23 @@
</div>
</div>
</div>
{{!-- Biography Tab --}}
<div class="tab biodata" data-group="primary" data-tab="biodata">
<div class="grid grid-3col">
<div>
<ul class="item-list alternate-list">
<li class="item flexrow" data-item-id="{{peuple._id}}">
<label class="generic-label">Peuple : </label>
<label class="generic-label">{{peuple.name}}</label>
<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>
<li class="item flexrow" data-item-id="{{origine._id}}">
<label class="generic-label">Origine : </label>
<label class="generic-label">{{origine.name}}</label>

View File

@@ -0,0 +1,288 @@
<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.html}}
{{/select}}
</select>
</li>
{{/each}}
</ul>
</div>
<div class="sheet-box color-bg-archetype">
<h4 class="item-name-label competence-name">Santé</h4>
<ul class="item-list alternate-list">
<li class="item flexrow">
<label class="label-name">Bonus</label>
<input type="text" class="input-numeric-short" name="system.sante.bonus" value="{{data.sante.bonus}}"
data-dtype="Number" />
<label class="label-name">Total</label>
<label class="label-name">{{data.sante.base}}</label>
</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>
<h4 class="item-name-label competence-name">Combat</h4>
<ul class="item-list alternate-list">
<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>
</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</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">&nbsp;</div>
<div class="item-controls item-controls-fixed">
</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">&nbsp;</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>

View File

@@ -72,7 +72,7 @@
<input type="text" class="padd-right status-small-label color-class-common" name="system.rarete" value="{{data.rarete}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">Prix </label>
<label class="generic-label">Prix (PZ) </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.prix" value="{{data.prix}}" data-dtype="Number" />
</span>

View File

@@ -0,0 +1,59 @@
<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">
<span class="flexrow">
<label class="generic-label">Type : </label>
<select class="status-small-label color-class-common" type="text" name="system.artifextype" value="{{system.artifextype}}" data-dtype="string" >
{{#select system.artifextype}}
{{#each config.artifexType as |label key|}}
<option value="{{key}}">{{label}}</option>
{{/each}}
{{/select}}
</select>
</span>
<span class="flexrow">
<label class="generic-label">Compétence : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.competence" value="{{system.competence}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Complexité : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.complexite" value="{{system.complexite}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">Durée de réalisation : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.dureerealisation" value="{{system.dureerealisation}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Temps de mise en route : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.tempsmiseenroute" value="{{system.tempsmiseenroute}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Défaut courant : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.defautcourant" value="{{system.defautcourant}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Prix (PZ) </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.prix" value="{{data.prix}}" data-dtype="Number" />
</span>
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
</div>
</section>
</form>

View File

@@ -31,7 +31,7 @@
<input type="text" class="padd-right status-small-label color-class-common" name="system.rarete" value="{{data.rarete}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">Prix </label>
<label class="generic-label">Prix (PZ)</label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.prix" value="{{data.prix}}" data-dtype="Number" />
</span>

View File

@@ -0,0 +1,25 @@
<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">
<span class="flexrow">
<label class="generic-label">Cout en Psyché : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.coutpsyche"
value="{{system.coutpsyche}}" data-dtype="Number" />
</span>
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
</div>
</section>
</form>

View File

@@ -15,7 +15,7 @@
<input type="text" class="padd-right status-small-label color-class-common" name="system.rarete" value="{{data.rarete}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">Prix </label>
<label class="generic-label">Prix (PZ) </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.prix" value="{{data.prix}}" data-dtype="Number" />
</span>

View File

@@ -0,0 +1,31 @@
<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">
<div class="flexcol">
<span class="flexrow">
<label class="generic-label">Type : </label>
<select class="status-small-label color-class-common" type="text" name="system.hubristype" value="{{system.hubristype}}" data-dtype="string" >
{{#select system.hubristype}}
{{#each config.hubrisType as |label key|}}
<option value="{{key}}">{{label}}</option>
{{/each}}
{{/select}}
</select>
</span>
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
</div>
</section>
</form>

View 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>

View File

@@ -57,7 +57,17 @@
<label class="generic-label">Durée : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.duree" value="{{system.duree}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Forule dé (simple) : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.formulesimple" value="{{system.formulesimple}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">Forule dé (étendue) : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.formuleetendue" value="{{system.formuleetendue}}" data-dtype="String" />
</span>
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
</div>

View File

@@ -23,7 +23,7 @@
<input type="text" class="padd-right status-small-label color-class-common" name="system.rarete" value="{{data.rarete}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">Prix </label>
<label class="generic-label">Prix (PZ) </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.prix" value="{{data.prix}}" data-dtype="Number" />
</span>