Compare commits

...

3 Commits

77 changed files with 605 additions and 351 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,8 +43,12 @@ 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() || {}),

View File

@@ -116,9 +116,18 @@ export class WastelandActor extends Actor {
WastelandUtility.sortArrayObjectsByName(items)
return items
}
getArtifex() {
return this.getItemSorted(["artifex"])
}
getPouvoirs() {
return this.getItemSorted(["pouvoir"])
}
getDons() {
return this.getItemSorted(["don"])
}
getHubris() {
return this.getItemSorted(["hubris"])
}
getEquipments() {
return this.getItemSorted(["equipement"])
}
@@ -128,6 +137,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 +215,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",

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

@@ -1 +1 @@
MANIFEST-000066
MANIFEST-000086

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.391741 7fef57fff6c0 Recovering log #64
2023/11/30-21:15:46.442719 7fef57fff6c0 Delete type=3 #62
2023/11/30-21:15:46.442861 7fef57fff6c0 Delete type=0 #64
2023/11/30-21:27:11.875054 7fef56ffd6c0 Level-0 table #69: started
2023/11/30-21:27:11.875091 7fef56ffd6c0 Level-0 table #69: 0 bytes OK
2023/11/30-21:27:11.883212 7fef56ffd6c0 Delete type=0 #67
2023/11/30-21:27:11.905474 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905597 7fef56ffd6c0 Manual compaction at level-1 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
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)

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/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)

Binary file not shown.

BIN
packs/armes/MANIFEST-000086 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-000019
MANIFEST-000040

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.497302 7fef577fe6c0 Recovering log #16
2023/11/30-21:15:46.549019 7fef577fe6c0 Delete type=3 #14
2023/11/30-21:15:46.549163 7fef577fe6c0 Delete type=0 #16
2023/11/30-21:27:11.898240 7fef56ffd6c0 Level-0 table #22: started
2023/11/30-21:27:11.898354 7fef56ffd6c0 Level-0 table #22: 0 bytes OK
2023/11/30-21:27:11.905296 7fef56ffd6c0 Delete type=0 #20
2023/11/30-21:27:11.905567 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905677 7fef56ffd6c0 Manual compaction at level-1 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!y47dBO3Mf5Pn7tOd' @ 0 : 0; will stop at (end)
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)

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/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)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000090
MANIFEST-000110

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.230478 7ff1ed3ff6c0 Recovering log #88
2023/11/30-21:15:46.280445 7ff1ed3ff6c0 Delete type=3 #86
2023/11/30-21:15:46.280560 7ff1ed3ff6c0 Delete type=0 #88
2023/11/30-21:27:11.868243 7fef56ffd6c0 Level-0 table #93: started
2023/11/30-21:27:11.868282 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
2023/11/30-21:27:11.874637 7fef56ffd6c0 Delete type=0 #91
2023/11/30-21:27:11.874845 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874886 7fef56ffd6c0 Manual compaction at level-1 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
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)

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/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)

View File

@@ -1 +1 @@
MANIFEST-000090
MANIFEST-000110

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.283399 7fef577fe6c0 Recovering log #88
2023/11/30-21:15:46.335688 7fef577fe6c0 Delete type=3 #86
2023/11/30-21:15:46.335822 7fef577fe6c0 Delete type=0 #88
2023/11/30-21:27:11.860229 7fef56ffd6c0 Level-0 table #93: started
2023/11/30-21:27:11.860269 7fef56ffd6c0 Level-0 table #93: 0 bytes OK
2023/11/30-21:27:11.868082 7fef56ffd6c0 Delete type=0 #91
2023/11/30-21:27:11.874830 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874872 7fef56ffd6c0 Manual compaction at level-1 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
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)

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/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)

View File

@@ -1 +1 @@
MANIFEST-000091
MANIFEST-000111

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.184229 7fef57fff6c0 Recovering log #89
2023/11/30-21:15:46.226456 7fef57fff6c0 Delete type=3 #87
2023/11/30-21:15:46.226596 7fef57fff6c0 Delete type=0 #89
2023/11/30-21:27:11.846165 7fef56ffd6c0 Level-0 table #94: started
2023/11/30-21:27:11.846241 7fef56ffd6c0 Level-0 table #94: 0 bytes OK
2023/11/30-21:27:11.853264 7fef56ffd6c0 Delete type=0 #92
2023/11/30-21:27:11.874798 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874859 7fef56ffd6c0 Manual compaction at level-1 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
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)

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/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)

Binary file not shown.

BIN
packs/pouvoirs/000026.ldb Normal file

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000006
MANIFEST-000027

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.128616 7ff1ecbfe6c0 Recovering log #4
2023/11/30-21:15:46.180837 7ff1ecbfe6c0 Delete type=3 #2
2023/11/30-21:15:46.180979 7ff1ecbfe6c0 Delete type=0 #4
2023/11/30-21:27:11.853503 7fef56ffd6c0 Level-0 table #9: started
2023/11/30-21:27:11.853566 7fef56ffd6c0 Level-0 table #9: 0 bytes OK
2023/11/30-21:27:11.860090 7fef56ffd6c0 Delete type=0 #7
2023/11/30-21:27:11.874816 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.874899 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
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)

View File

@@ -1,5 +1,15 @@
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/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)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000127
MANIFEST-000147

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.445566 7ff1ed3ff6c0 Recovering log #125
2023/11/30-21:15:46.493999 7ff1ed3ff6c0 Delete type=3 #123
2023/11/30-21:15:46.494141 7ff1ed3ff6c0 Delete type=0 #125
2023/11/30-21:27:11.883700 7fef56ffd6c0 Level-0 table #130: started
2023/11/30-21:27:11.883755 7fef56ffd6c0 Level-0 table #130: 0 bytes OK
2023/11/30-21:27:11.890220 7fef56ffd6c0 Delete type=0 #128
2023/11/30-21:27:11.905504 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905620 7fef56ffd6c0 Manual compaction at level-1 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
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)

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/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)

View File

@@ -1 +1 @@
MANIFEST-000066
MANIFEST-000086

View File

@@ -1,7 +1,7 @@
2023/11/30-21:15:46.600295 7fef57fff6c0 Recovering log #64
2023/11/30-21:15:46.642910 7fef57fff6c0 Delete type=3 #62
2023/11/30-21:15:46.643047 7fef57fff6c0 Delete type=0 #64
2023/11/30-21:27:11.913015 7fef56ffd6c0 Level-0 table #69: started
2023/11/30-21:27:11.913057 7fef56ffd6c0 Level-0 table #69: 0 bytes OK
2023/11/30-21:27:11.920506 7fef56ffd6c0 Delete type=0 #67
2023/11/30-21:27:11.920738 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
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)

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/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)

Binary file not shown.

Binary file not shown.

View File

@@ -1 +1 @@
MANIFEST-000127
MANIFEST-000147

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.073041 7fef577fe6c0 Recovering log #125
2023/11/30-21:15:46.123278 7fef577fe6c0 Delete type=3 #123
2023/11/30-21:15:46.123394 7fef577fe6c0 Delete type=0 #125
2023/11/30-21:27:11.815497 7fef56ffd6c0 Level-0 table #130: started
2023/11/30-21:27:11.815569 7fef56ffd6c0 Level-0 table #130: 0 bytes OK
2023/11/30-21:27:11.822153 7fef56ffd6c0 Delete type=0 #128
2023/11/30-21:27:11.845881 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.845999 7fef56ffd6c0 Manual compaction at level-1 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
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)

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/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)

View File

@@ -1 +1 @@
MANIFEST-000126
MANIFEST-000146

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.552305 7ff1ecbfe6c0 Recovering log #124
2023/11/30-21:15:46.596745 7ff1ecbfe6c0 Delete type=3 #122
2023/11/30-21:15:46.596836 7ff1ecbfe6c0 Delete type=0 #124
2023/11/30-21:27:11.906004 7fef56ffd6c0 Level-0 table #129: started
2023/11/30-21:27:11.906088 7fef56ffd6c0 Level-0 table #129: 0 bytes OK
2023/11/30-21:27:11.912856 7fef56ffd6c0 Delete type=0 #127
2023/11/30-21:27:11.920689 7fef56ffd6c0 Manual compaction at level-0 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.920761 7fef56ffd6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
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)

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/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)

View File

@@ -1 +1 @@
MANIFEST-000035
MANIFEST-000055

View File

@@ -1,8 +1,8 @@
2023/11/30-21:15:46.339094 7ff1ecbfe6c0 Recovering log #33
2023/11/30-21:15:46.388593 7ff1ecbfe6c0 Delete type=3 #31
2023/11/30-21:15:46.388685 7ff1ecbfe6c0 Delete type=0 #33
2023/11/30-21:27:11.890421 7fef56ffd6c0 Level-0 table #38: started
2023/11/30-21:27:11.890470 7fef56ffd6c0 Level-0 table #38: 0 bytes OK
2023/11/30-21:27:11.898056 7fef56ffd6c0 Delete type=0 #36
2023/11/30-21:27:11.905539 7fef56ffd6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
2023/11/30-21:27:11.905649 7fef56ffd6c0 Manual compaction at level-1 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
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)

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/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)

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.11",
"version": "11.0.14",
"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.11.zip",
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.14.zip",
"packs": [
{
"type": "Item",

View File

@@ -122,141 +122,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,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

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