Ajout pouvoirs et jets associés
This commit is contained in:
parent
4ed2bcd2ee
commit
68689add33
BIN
assets/icons/don.webp
Normal file
BIN
assets/icons/don.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
BIN
assets/icons/hubris.webp
Normal file
BIN
assets/icons/hubris.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 40 KiB |
@ -43,9 +43,12 @@ export class WastelandActorSheet extends ActorSheet {
|
|||||||
armes: duplicate(this.actor.getWeapons()),
|
armes: duplicate(this.actor.getWeapons()),
|
||||||
protections: duplicate(this.actor.getArmors()),
|
protections: duplicate(this.actor.getArmors()),
|
||||||
pouvoirs:duplicate(this.actor.getPouvoirs()),
|
pouvoirs:duplicate(this.actor.getPouvoirs()),
|
||||||
|
dons: duplicate(this.actor.getDons()),
|
||||||
|
hubrises: duplicate(this.actor.getHubris()),
|
||||||
tours:duplicate(this.actor.getTours()),
|
tours:duplicate(this.actor.getTours()),
|
||||||
artifex: duplicate(this.actor.getArtifex()),
|
artifex: duplicate(this.actor.getArtifex()),
|
||||||
charmes:duplicate(this.actor.getCharmes()),
|
charmes:duplicate(this.actor.getCharmes()),
|
||||||
|
peuple: duplicate(this.actor.getPeuple() || {}),
|
||||||
origine: duplicate(this.actor.getOrigine() || {}),
|
origine: duplicate(this.actor.getOrigine() || {}),
|
||||||
heritage: duplicate(this.actor.getHeritage() || {}),
|
heritage: duplicate(this.actor.getHeritage() || {}),
|
||||||
metier: duplicate(this.actor.getMetier() || {}),
|
metier: duplicate(this.actor.getMetier() || {}),
|
||||||
|
@ -122,6 +122,12 @@ export class WastelandActor extends Actor {
|
|||||||
getPouvoirs() {
|
getPouvoirs() {
|
||||||
return this.getItemSorted(["pouvoir"])
|
return this.getItemSorted(["pouvoir"])
|
||||||
}
|
}
|
||||||
|
getDons() {
|
||||||
|
return this.getItemSorted(["don"])
|
||||||
|
}
|
||||||
|
getHubris() {
|
||||||
|
return this.getItemSorted(["hubris"])
|
||||||
|
}
|
||||||
getEquipments() {
|
getEquipments() {
|
||||||
return this.getItemSorted(["equipement"])
|
return this.getItemSorted(["equipement"])
|
||||||
}
|
}
|
||||||
@ -131,6 +137,9 @@ export class WastelandActor extends Actor {
|
|||||||
getArmors() {
|
getArmors() {
|
||||||
return this.getItemSorted(["protection"])
|
return this.getItemSorted(["protection"])
|
||||||
}
|
}
|
||||||
|
getPeuple() {
|
||||||
|
return this.items.find(item => item.type == "peuple")
|
||||||
|
}
|
||||||
getOrigine() {
|
getOrigine() {
|
||||||
return this.items.find(item => item.type == "origine")
|
return this.items.find(item => item.type == "origine")
|
||||||
}
|
}
|
||||||
@ -206,7 +215,7 @@ export class WastelandActor extends Actor {
|
|||||||
if (this.system.sante.base != newSante) {
|
if (this.system.sante.base != newSante) {
|
||||||
this.update({ '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) {
|
if (this.system.psyche.fullmax != newPsyche) {
|
||||||
this.update({ 'system.psyche.fullmax': newPsyche })
|
this.update({ 'system.psyche.fullmax': newPsyche })
|
||||||
}
|
}
|
||||||
|
@ -14,6 +14,10 @@ export const WASTELAND_CONFIG = {
|
|||||||
"nuit": "Chemin des Nuits",
|
"nuit": "Chemin des Nuits",
|
||||||
"oiseaux": "Chemin des Oiseaux"
|
"oiseaux": "Chemin des Oiseaux"
|
||||||
},
|
},
|
||||||
|
hubrisType: {
|
||||||
|
"mental": "Mental",
|
||||||
|
"physique": "Physique",
|
||||||
|
},
|
||||||
charmetype: {
|
charmetype: {
|
||||||
tour: "Tour",
|
tour: "Tour",
|
||||||
charme: "Charme",
|
charme: "Charme",
|
||||||
|
@ -17,6 +17,8 @@ export const defaultItemImg = {
|
|||||||
heritage: "systems/fvtt-wasteland/assets/icons/legacy.webp",
|
heritage: "systems/fvtt-wasteland/assets/icons/legacy.webp",
|
||||||
charme: "systems/fvtt-wasteland/assets/icons/charm.webp",
|
charme: "systems/fvtt-wasteland/assets/icons/charm.webp",
|
||||||
peuple: "systems/fvtt-wasteland/assets/icons/people.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",
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1 +1 @@
|
|||||||
MANIFEST-000078
|
MANIFEST-000086
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.657234 7fef57fff6c0 Recovering log #76
|
2023/12/01-14:01:31.663762 7facd3fff6c0 Recovering log #84
|
||||||
2023/12/01-09:39:06.667932 7fef57fff6c0 Delete type=3 #74
|
2023/12/01-14:01:31.673391 7facd3fff6c0 Delete type=3 #82
|
||||||
2023/12/01-09:39:06.667995 7fef57fff6c0 Delete type=0 #76
|
2023/12/01-14:01:31.673441 7facd3fff6c0 Delete type=0 #84
|
||||||
2023/12/01-09:50:10.707951 7fef56ffd6c0 Level-0 table #81: started
|
2023/12/01-14:02:58.886581 7faa52bff6c0 Level-0 table #89: started
|
||||||
2023/12/01-09:50:10.707996 7fef56ffd6c0 Level-0 table #81: 0 bytes OK
|
2023/12/01-14:02:58.886605 7faa52bff6c0 Level-0 table #89: 0 bytes OK
|
||||||
2023/12/01-09:50:10.726578 7fef56ffd6c0 Delete type=0 #79
|
2023/12/01-14:02:58.893826 7faa52bff6c0 Delete type=0 #87
|
||||||
2023/12/01-09:50:10.754430 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
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-09:50:10.754484 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.735204 7fef57fff6c0 Recovering log #72
|
2023/12/01-13:53:39.494309 7facd3fff6c0 Recovering log #80
|
||||||
2023/12/01-09:36:46.745007 7fef57fff6c0 Delete type=3 #70
|
2023/12/01-13:53:39.504896 7facd3fff6c0 Delete type=3 #78
|
||||||
2023/12/01-09:36:46.745100 7fef57fff6c0 Delete type=0 #72
|
2023/12/01-13:53:39.504998 7facd3fff6c0 Delete type=0 #80
|
||||||
2023/12/01-09:37:12.141437 7fef56ffd6c0 Level-0 table #77: started
|
2023/12/01-13:59:53.167281 7faa52bff6c0 Level-0 table #85: started
|
||||||
2023/12/01-09:37:12.141461 7fef56ffd6c0 Level-0 table #77: 0 bytes OK
|
2023/12/01-13:59:53.167307 7faa52bff6c0 Level-0 table #85: 0 bytes OK
|
||||||
2023/12/01-09:37:12.148157 7fef56ffd6c0 Delete type=0 #75
|
2023/12/01-13:59:53.198187 7faa52bff6c0 Delete type=0 #83
|
||||||
2023/12/01-09:37:12.155670 7fef56ffd6c0 Manual compaction at level-0 from '!items!0swiE8k5zfUIqmXu' @ 72057594037927935 : 1 .. '!items!wv5EiePmPTpqFutt' @ 0 : 0; will stop at (end)
|
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-09:37:12.155729 7fef56ffd6c0 Manual compaction at level-1 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
BIN
packs/armes/MANIFEST-000086
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000032
|
MANIFEST-000040
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.681576 7fef577fe6c0 Recovering log #30
|
2023/12/01-14:01:31.687335 7face89f96c0 Recovering log #38
|
||||||
2023/12/01-09:39:06.693076 7fef577fe6c0 Delete type=3 #28
|
2023/12/01-14:01:31.697567 7face89f96c0 Delete type=3 #36
|
||||||
2023/12/01-09:39:06.693136 7fef577fe6c0 Delete type=0 #30
|
2023/12/01-14:01:31.697683 7face89f96c0 Delete type=0 #38
|
||||||
2023/12/01-09:50:10.747791 7fef56ffd6c0 Level-0 table #35: started
|
2023/12/01-14:02:58.893938 7faa52bff6c0 Level-0 table #43: started
|
||||||
2023/12/01-09:50:10.747836 7fef56ffd6c0 Level-0 table #35: 0 bytes OK
|
2023/12/01-14:02:58.893962 7faa52bff6c0 Level-0 table #43: 0 bytes OK
|
||||||
2023/12/01-09:50:10.754312 7fef56ffd6c0 Delete type=0 #33
|
2023/12/01-14:02:58.900266 7faa52bff6c0 Delete type=0 #41
|
||||||
2023/12/01-09:50:10.754473 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
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-09:50:10.754513 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.762028 7ff1ecbfe6c0 Recovering log #25
|
2023/12/01-13:53:39.520862 7facd37fe6c0 Recovering log #34
|
||||||
2023/12/01-09:36:46.771832 7ff1ecbfe6c0 Delete type=3 #23
|
2023/12/01-13:53:39.531517 7facd37fe6c0 Delete type=3 #32
|
||||||
2023/12/01-09:36:46.771891 7ff1ecbfe6c0 Delete type=0 #25
|
2023/12/01-13:53:39.531569 7facd37fe6c0 Delete type=0 #34
|
||||||
2023/12/01-09:37:12.127448 7fef56ffd6c0 Level-0 table #31: started
|
2023/12/01-13:59:53.280355 7faa52bff6c0 Level-0 table #39: started
|
||||||
2023/12/01-09:37:12.127484 7fef56ffd6c0 Level-0 table #31: 0 bytes OK
|
2023/12/01-13:59:53.280393 7faa52bff6c0 Level-0 table #39: 0 bytes OK
|
||||||
2023/12/01-09:37:12.133959 7fef56ffd6c0 Delete type=0 #29
|
2023/12/01-13:59:53.317311 7faa52bff6c0 Delete type=0 #37
|
||||||
2023/12/01-09:37:12.155632 7fef56ffd6c0 Manual compaction at level-0 from '!folders!JlP90zkPvPcJDq0q' @ 72057594037927935 : 1 .. '!items!zjMDuxKHKJ4vE5UV' @ 0 : 0; will stop at (end)
|
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-09:37:12.155701 7fef56ffd6c0 Manual compaction at level-1 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.
@ -1 +1 @@
|
|||||||
MANIFEST-000102
|
MANIFEST-000110
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.620746 7ff1ecbfe6c0 Recovering log #100
|
2023/12/01-14:01:31.626736 7face91fa6c0 Recovering log #108
|
||||||
2023/12/01-09:39:06.631263 7ff1ecbfe6c0 Delete type=3 #98
|
2023/12/01-14:01:31.637348 7face91fa6c0 Delete type=3 #106
|
||||||
2023/12/01-09:39:06.631327 7ff1ecbfe6c0 Delete type=0 #100
|
2023/12/01-14:01:31.637457 7face91fa6c0 Delete type=0 #108
|
||||||
2023/12/01-09:50:10.694250 7fef56ffd6c0 Level-0 table #105: started
|
2023/12/01-14:02:58.867219 7faa52bff6c0 Level-0 table #113: started
|
||||||
2023/12/01-09:50:10.694272 7fef56ffd6c0 Level-0 table #105: 0 bytes OK
|
2023/12/01-14:02:58.867259 7faa52bff6c0 Level-0 table #113: 0 bytes OK
|
||||||
2023/12/01-09:50:10.700492 7fef56ffd6c0 Delete type=0 #103
|
2023/12/01-14:02:58.873501 7faa52bff6c0 Delete type=0 #111
|
||||||
2023/12/01-09:50:10.707781 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
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-09:50:10.707812 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.695660 7fef577fe6c0 Recovering log #96
|
2023/12/01-13:53:39.455304 7face89f96c0 Recovering log #104
|
||||||
2023/12/01-09:36:46.705301 7fef577fe6c0 Delete type=3 #94
|
2023/12/01-13:53:39.465228 7face89f96c0 Delete type=3 #102
|
||||||
2023/12/01-09:36:46.705365 7fef577fe6c0 Delete type=0 #96
|
2023/12/01-13:53:39.465278 7face89f96c0 Delete type=0 #104
|
||||||
2023/12/01-09:37:12.112938 7fef56ffd6c0 Level-0 table #101: started
|
2023/12/01-13:59:52.988050 7faa52bff6c0 Level-0 table #109: started
|
||||||
2023/12/01-09:37:12.112983 7fef56ffd6c0 Level-0 table #101: 0 bytes OK
|
2023/12/01-13:59:52.988087 7faa52bff6c0 Level-0 table #109: 0 bytes OK
|
||||||
2023/12/01-09:37:12.120632 7fef56ffd6c0 Delete type=0 #99
|
2023/12/01-13:59:53.032097 7faa52bff6c0 Delete type=0 #107
|
||||||
2023/12/01-09:37:12.127253 7fef56ffd6c0 Manual compaction at level-0 from '!items!276PAK1VR5LK4rbE' @ 72057594037927935 : 1 .. '!items!nYYX7rtSMGFO4xVY' @ 0 : 0; will stop at (end)
|
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-09:37:12.127284 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000102
|
MANIFEST-000110
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.633401 7fef577fe6c0 Recovering log #100
|
2023/12/01-14:01:31.639020 7face89f96c0 Recovering log #108
|
||||||
2023/12/01-09:39:06.643130 7fef577fe6c0 Delete type=3 #98
|
2023/12/01-14:01:31.648871 7face89f96c0 Delete type=3 #106
|
||||||
2023/12/01-09:39:06.643178 7fef577fe6c0 Delete type=0 #100
|
2023/12/01-14:01:31.648946 7face89f96c0 Delete type=0 #108
|
||||||
2023/12/01-09:50:10.700604 7fef56ffd6c0 Level-0 table #105: started
|
2023/12/01-14:02:58.873626 7faa52bff6c0 Level-0 table #113: started
|
||||||
2023/12/01-09:50:10.700627 7fef56ffd6c0 Level-0 table #105: 0 bytes OK
|
2023/12/01-14:02:58.873648 7faa52bff6c0 Level-0 table #113: 0 bytes OK
|
||||||
2023/12/01-09:50:10.707633 7fef56ffd6c0 Delete type=0 #103
|
2023/12/01-14:02:58.880148 7faa52bff6c0 Delete type=0 #111
|
||||||
2023/12/01-09:50:10.707791 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
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-09:50:10.707820 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.708601 7ff1ecbfe6c0 Recovering log #96
|
2023/12/01-13:53:39.468222 7facd37fe6c0 Recovering log #104
|
||||||
2023/12/01-09:36:46.718654 7ff1ecbfe6c0 Delete type=3 #94
|
2023/12/01-13:53:39.478045 7facd37fe6c0 Delete type=3 #102
|
||||||
2023/12/01-09:36:46.718767 7ff1ecbfe6c0 Delete type=0 #96
|
2023/12/01-13:53:39.478100 7facd37fe6c0 Delete type=0 #104
|
||||||
2023/12/01-09:37:12.099976 7fef56ffd6c0 Level-0 table #101: started
|
2023/12/01-13:59:53.074479 7faa52bff6c0 Level-0 table #109: started
|
||||||
2023/12/01-09:37:12.100003 7fef56ffd6c0 Level-0 table #101: 0 bytes OK
|
2023/12/01-13:59:53.074531 7faa52bff6c0 Level-0 table #109: 0 bytes OK
|
||||||
2023/12/01-09:37:12.106417 7fef56ffd6c0 Delete type=0 #99
|
2023/12/01-13:59:53.105798 7faa52bff6c0 Delete type=0 #107
|
||||||
2023/12/01-09:37:12.127232 7fef56ffd6c0 Manual compaction at level-0 from '!items!1zbNJIOmrsThaKFU' @ 72057594037927935 : 1 .. '!items!y0G0VMyygxIj4Y7F' @ 0 : 0; will stop at (end)
|
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-09:37:12.127277 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000103
|
MANIFEST-000111
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.608385 7fef57fff6c0 Recovering log #101
|
2023/12/01-14:01:31.614253 7facd3fff6c0 Recovering log #109
|
||||||
2023/12/01-09:39:06.618559 7fef57fff6c0 Delete type=3 #99
|
2023/12/01-14:01:31.623933 7facd3fff6c0 Delete type=3 #107
|
||||||
2023/12/01-09:39:06.618628 7fef57fff6c0 Delete type=0 #101
|
2023/12/01-14:01:31.624011 7facd3fff6c0 Delete type=0 #109
|
||||||
2023/12/01-09:50:10.687428 7fef56ffd6c0 Level-0 table #106: started
|
2023/12/01-14:02:58.860374 7faa52bff6c0 Level-0 table #114: started
|
||||||
2023/12/01-09:50:10.687455 7fef56ffd6c0 Level-0 table #106: 0 bytes OK
|
2023/12/01-14:02:58.860398 7faa52bff6c0 Level-0 table #114: 0 bytes OK
|
||||||
2023/12/01-09:50:10.694138 7fef56ffd6c0 Delete type=0 #104
|
2023/12/01-14:02:58.867039 7faa52bff6c0 Delete type=0 #112
|
||||||
2023/12/01-09:50:10.707759 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
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-09:50:10.707828 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.681142 7fef57fff6c0 Recovering log #97
|
2023/12/01-13:53:39.441816 7facd3fff6c0 Recovering log #105
|
||||||
2023/12/01-09:36:46.692047 7fef57fff6c0 Delete type=3 #95
|
2023/12/01-13:53:39.451617 7facd3fff6c0 Delete type=3 #103
|
||||||
2023/12/01-09:36:46.692102 7fef57fff6c0 Delete type=0 #97
|
2023/12/01-13:53:39.451709 7facd3fff6c0 Delete type=0 #105
|
||||||
2023/12/01-09:37:12.120793 7fef56ffd6c0 Level-0 table #102: started
|
2023/12/01-13:59:53.032302 7faa52bff6c0 Level-0 table #110: started
|
||||||
2023/12/01-09:37:12.120840 7fef56ffd6c0 Level-0 table #102: 0 bytes OK
|
2023/12/01-13:59:53.032354 7faa52bff6c0 Level-0 table #110: 0 bytes OK
|
||||||
2023/12/01-09:37:12.127110 7fef56ffd6c0 Delete type=0 #100
|
2023/12/01-13:59:53.074270 7faa52bff6c0 Delete type=0 #108
|
||||||
2023/12/01-09:37:12.127263 7fef56ffd6c0 Manual compaction at level-0 from '!items!0xdQs67JPsVrUyvp' @ 72057594037927935 : 1 .. '!items!xox7R7Uuuz0eGL0p' @ 0 : 0; will stop at (end)
|
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-09:37:12.127292 7fef56ffd6c0 Manual compaction at level-1 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.
Binary file not shown.
BIN
packs/pouvoirs/000026.ldb
Normal file
BIN
packs/pouvoirs/000026.ldb
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000018
|
MANIFEST-000027
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.595181 7ff1ed3ff6c0 Recovering log #16
|
2023/12/01-14:01:31.602177 7facd37fe6c0 Recovering log #24
|
||||||
2023/12/01-09:39:06.605896 7ff1ed3ff6c0 Delete type=3 #14
|
2023/12/01-14:01:31.611466 7facd37fe6c0 Delete type=3 #22
|
||||||
2023/12/01-09:39:06.605998 7ff1ed3ff6c0 Delete type=0 #16
|
2023/12/01-14:01:31.611526 7facd37fe6c0 Delete type=0 #24
|
||||||
2023/12/01-09:50:10.680999 7fef56ffd6c0 Level-0 table #21: started
|
2023/12/01-14:02:58.854147 7faa52bff6c0 Level-0 table #30: started
|
||||||
2023/12/01-09:50:10.681032 7fef56ffd6c0 Level-0 table #21: 0 bytes OK
|
2023/12/01-14:02:58.854179 7faa52bff6c0 Level-0 table #30: 0 bytes OK
|
||||||
2023/12/01-09:50:10.687287 7fef56ffd6c0 Delete type=0 #19
|
2023/12/01-14:02:58.860296 7faa52bff6c0 Delete type=0 #28
|
||||||
2023/12/01-09:50:10.694237 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
|
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-09:50:10.707771 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 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)
|
||||||
|
@ -1,8 +1,15 @@
|
|||||||
2023/12/01-09:36:46.666596 7ff1ed3ff6c0 Recovering log #12
|
2023/12/01-13:53:39.428530 7face91fa6c0 Recovering log #20
|
||||||
2023/12/01-09:36:46.677154 7ff1ed3ff6c0 Delete type=3 #10
|
2023/12/01-13:53:39.438733 7face91fa6c0 Delete type=3 #18
|
||||||
2023/12/01-09:36:46.677264 7ff1ed3ff6c0 Delete type=0 #12
|
2023/12/01-13:53:39.438827 7face91fa6c0 Delete type=0 #20
|
||||||
2023/12/01-09:37:12.106537 7fef56ffd6c0 Level-0 table #17: started
|
2023/12/01-13:59:52.933303 7faa52bff6c0 Level-0 table #25: started
|
||||||
2023/12/01-09:37:12.106566 7fef56ffd6c0 Level-0 table #17: 0 bytes OK
|
2023/12/01-13:59:52.950915 7faa52bff6c0 Level-0 table #25: 80038 bytes OK
|
||||||
2023/12/01-09:37:12.112749 7fef56ffd6c0 Delete type=0 #15
|
2023/12/01-13:59:52.987594 7faa52bff6c0 Delete type=0 #23
|
||||||
2023/12/01-09:37:12.127244 7fef56ffd6c0 Manual compaction at level-0 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 0 : 0; will stop at (end)
|
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-09:37:12.127270 7fef56ffd6c0 Manual compaction at level-1 from '!folders!Oohjh4Xz8l2TjgZX' @ 72057594037927935 : 1 .. '!items!zcFqloFjpZINp9Ku' @ 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.
BIN
packs/pouvoirs/MANIFEST-000027
Normal file
BIN
packs/pouvoirs/MANIFEST-000027
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000139
|
MANIFEST-000147
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.669675 7ff1ecbfe6c0 Recovering log #137
|
2023/12/01-14:01:31.675150 7face91fa6c0 Recovering log #145
|
||||||
2023/12/01-09:39:06.679611 7ff1ecbfe6c0 Delete type=3 #135
|
2023/12/01-14:01:31.685370 7face91fa6c0 Delete type=3 #143
|
||||||
2023/12/01-09:39:06.679673 7ff1ecbfe6c0 Delete type=0 #137
|
2023/12/01-14:01:31.685464 7face91fa6c0 Delete type=0 #145
|
||||||
2023/12/01-09:50:10.739689 7fef56ffd6c0 Level-0 table #142: started
|
2023/12/01-14:02:58.880376 7faa52bff6c0 Level-0 table #150: started
|
||||||
2023/12/01-09:50:10.739715 7fef56ffd6c0 Level-0 table #142: 0 bytes OK
|
2023/12/01-14:02:58.880453 7faa52bff6c0 Level-0 table #150: 0 bytes OK
|
||||||
2023/12/01-09:50:10.747595 7fef56ffd6c0 Delete type=0 #140
|
2023/12/01-14:02:58.886483 7faa52bff6c0 Delete type=0 #148
|
||||||
2023/12/01-09:50:10.754455 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
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-09:50:10.754505 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.748226 7fef577fe6c0 Recovering log #133
|
2023/12/01-13:53:39.508151 7face89f96c0 Recovering log #141
|
||||||
2023/12/01-09:36:46.759856 7fef577fe6c0 Delete type=3 #131
|
2023/12/01-13:53:39.518413 7face89f96c0 Delete type=3 #139
|
||||||
2023/12/01-09:36:46.759936 7fef577fe6c0 Delete type=0 #133
|
2023/12/01-13:53:39.518484 7face89f96c0 Delete type=0 #141
|
||||||
2023/12/01-09:37:12.148496 7fef56ffd6c0 Level-0 table #138: started
|
2023/12/01-13:59:53.237155 7faa52bff6c0 Level-0 table #146: started
|
||||||
2023/12/01-09:37:12.148537 7fef56ffd6c0 Level-0 table #138: 0 bytes OK
|
2023/12/01-13:59:53.237188 7faa52bff6c0 Level-0 table #146: 0 bytes OK
|
||||||
2023/12/01-09:37:12.155495 7fef56ffd6c0 Delete type=0 #136
|
2023/12/01-13:59:53.280148 7faa52bff6c0 Delete type=0 #144
|
||||||
2023/12/01-09:37:12.155687 7fef56ffd6c0 Manual compaction at level-0 from '!items!2hD1DQVeCIQIXFU7' @ 72057594037927935 : 1 .. '!items!veoS6Gtzj6Dq087V' @ 0 : 0; will stop at (end)
|
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-09:37:12.155743 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000078
|
MANIFEST-000086
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/12/01-09:39:06.708661 7fef57fff6c0 Recovering log #76
|
2023/12/01-14:01:31.712005 7facd3fff6c0 Recovering log #84
|
||||||
2023/12/01-09:39:06.718744 7fef57fff6c0 Delete type=3 #74
|
2023/12/01-14:01:31.722434 7facd3fff6c0 Delete type=3 #82
|
||||||
2023/12/01-09:39:06.718806 7fef57fff6c0 Delete type=0 #76
|
2023/12/01-14:01:31.722487 7facd3fff6c0 Delete type=0 #84
|
||||||
2023/12/01-09:50:10.754659 7fef56ffd6c0 Level-0 table #81: started
|
2023/12/01-14:02:58.906829 7faa52bff6c0 Level-0 table #89: started
|
||||||
2023/12/01-09:50:10.754692 7fef56ffd6c0 Level-0 table #81: 0 bytes OK
|
2023/12/01-14:02:58.906889 7faa52bff6c0 Level-0 table #89: 0 bytes OK
|
||||||
2023/12/01-09:50:10.762186 7fef56ffd6c0 Delete type=0 #79
|
2023/12/01-14:02:58.914249 7faa52bff6c0 Delete type=0 #87
|
||||||
2023/12/01-09:50:10.768711 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
2023/12/01-14:02:58.920445 7faa52bff6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
2023/12/01-09:36:46.789134 7fef57fff6c0 Recovering log #72
|
2023/12/01-13:53:39.595199 7facd3fff6c0 Recovering log #80
|
||||||
2023/12/01-09:36:46.800351 7fef57fff6c0 Delete type=3 #70
|
2023/12/01-13:53:39.604901 7facd3fff6c0 Delete type=3 #78
|
||||||
2023/12/01-09:36:46.800407 7fef57fff6c0 Delete type=0 #72
|
2023/12/01-13:53:39.604956 7facd3fff6c0 Delete type=0 #80
|
||||||
2023/12/01-09:37:12.155825 7fef56ffd6c0 Level-0 table #77: started
|
2023/12/01-13:59:53.354986 7faa52bff6c0 Level-0 table #85: started
|
||||||
2023/12/01-09:37:12.155880 7fef56ffd6c0 Level-0 table #77: 0 bytes OK
|
2023/12/01-13:59:53.355010 7faa52bff6c0 Level-0 table #85: 0 bytes OK
|
||||||
2023/12/01-09:37:12.162421 7fef56ffd6c0 Delete type=0 #75
|
2023/12/01-13:59:53.424142 7faa52bff6c0 Delete type=0 #83
|
||||||
2023/12/01-09:37:12.170790 7fef56ffd6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
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.
BIN
packs/scenes/MANIFEST-000086
Normal file
BIN
packs/scenes/MANIFEST-000086
Normal file
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000139
|
MANIFEST-000147
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.582395 7fef577fe6c0 Recovering log #137
|
2023/12/01-14:01:31.589948 7face89f96c0 Recovering log #145
|
||||||
2023/12/01-09:39:06.593503 7fef577fe6c0 Delete type=3 #135
|
2023/12/01-14:01:31.600115 7face89f96c0 Delete type=3 #143
|
||||||
2023/12/01-09:39:06.593561 7fef577fe6c0 Delete type=0 #137
|
2023/12/01-14:01:31.600196 7face89f96c0 Delete type=0 #145
|
||||||
2023/12/01-09:50:10.664378 7fef56ffd6c0 Level-0 table #142: started
|
2023/12/01-14:02:58.831814 7faa52bff6c0 Level-0 table #150: started
|
||||||
2023/12/01-09:50:10.664411 7fef56ffd6c0 Level-0 table #142: 0 bytes OK
|
2023/12/01-14:02:58.831844 7faa52bff6c0 Level-0 table #150: 0 bytes OK
|
||||||
2023/12/01-09:50:10.670652 7fef56ffd6c0 Delete type=0 #140
|
2023/12/01-14:02:58.837662 7faa52bff6c0 Delete type=0 #148
|
||||||
2023/12/01-09:50:10.680970 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
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-09:50:10.687417 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.654705 7ff1ecbfe6c0 Recovering log #133
|
2023/12/01-13:53:39.415677 7facd37fe6c0 Recovering log #141
|
||||||
2023/12/01-09:36:46.664667 7ff1ecbfe6c0 Delete type=3 #131
|
2023/12/01-13:53:39.425756 7facd37fe6c0 Delete type=3 #139
|
||||||
2023/12/01-09:36:46.664725 7ff1ecbfe6c0 Delete type=0 #133
|
2023/12/01-13:53:39.425846 7facd37fe6c0 Delete type=0 #141
|
||||||
2023/12/01-09:37:12.072090 7fef56ffd6c0 Level-0 table #138: started
|
2023/12/01-13:59:52.777793 7faa52bff6c0 Level-0 table #146: started
|
||||||
2023/12/01-09:37:12.072144 7fef56ffd6c0 Level-0 table #138: 0 bytes OK
|
2023/12/01-13:59:52.777856 7faa52bff6c0 Level-0 table #146: 0 bytes OK
|
||||||
2023/12/01-09:37:12.078382 7fef56ffd6c0 Delete type=0 #136
|
2023/12/01-13:59:52.814639 7faa52bff6c0 Delete type=0 #144
|
||||||
2023/12/01-09:37:12.089730 7fef56ffd6c0 Manual compaction at level-0 from '!items!0LlzDyCurJedqeyG' @ 72057594037927935 : 1 .. '!items!tq6mEgXog7h4VyWk' @ 0 : 0; will stop at (end)
|
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-09:37:12.099838 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000138
|
MANIFEST-000146
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.694995 7ff1ed3ff6c0 Recovering log #136
|
2023/12/01-14:01:31.699537 7facd37fe6c0 Recovering log #144
|
||||||
2023/12/01-09:39:06.705993 7ff1ed3ff6c0 Delete type=3 #134
|
2023/12/01-14:01:31.709639 7facd37fe6c0 Delete type=3 #142
|
||||||
2023/12/01-09:39:06.706093 7ff1ed3ff6c0 Delete type=0 #136
|
2023/12/01-14:01:31.709701 7facd37fe6c0 Delete type=0 #144
|
||||||
2023/12/01-09:50:10.762325 7fef56ffd6c0 Level-0 table #141: started
|
2023/12/01-14:02:58.914354 7faa52bff6c0 Level-0 table #149: started
|
||||||
2023/12/01-09:50:10.762352 7fef56ffd6c0 Level-0 table #141: 0 bytes OK
|
2023/12/01-14:02:58.914378 7faa52bff6c0 Level-0 table #149: 0 bytes OK
|
||||||
2023/12/01-09:50:10.768595 7fef56ffd6c0 Delete type=0 #139
|
2023/12/01-14:02:58.920351 7faa52bff6c0 Delete type=0 #147
|
||||||
2023/12/01-09:50:10.768730 7fef56ffd6c0 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.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-09:50:10.768757 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:02:58.920470 7faa52bff6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.775593 7ff1ed3ff6c0 Recovering log #132
|
2023/12/01-13:53:39.581116 7face91fa6c0 Recovering log #140
|
||||||
2023/12/01-09:36:46.786437 7ff1ed3ff6c0 Delete type=3 #130
|
2023/12/01-13:53:39.591862 7face91fa6c0 Delete type=3 #138
|
||||||
2023/12/01-09:36:46.786518 7ff1ed3ff6c0 Delete type=0 #132
|
2023/12/01-13:53:39.591949 7face91fa6c0 Delete type=0 #140
|
||||||
2023/12/01-09:37:12.162985 7fef56ffd6c0 Level-0 table #137: started
|
2023/12/01-13:59:53.317612 7faa52bff6c0 Level-0 table #145: started
|
||||||
2023/12/01-09:37:12.163493 7fef56ffd6c0 Level-0 table #137: 0 bytes OK
|
2023/12/01-13:59:53.317640 7faa52bff6c0 Level-0 table #145: 0 bytes OK
|
||||||
2023/12/01-09:37:12.170628 7fef56ffd6c0 Delete type=0 #135
|
2023/12/01-13:59:53.354885 7faa52bff6c0 Delete type=0 #143
|
||||||
2023/12/01-09:37:12.170813 7fef56ffd6c0 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.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-09:37:12.170854 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:59:53.424262 7faa52bff6c0 Manual compaction at level-1 from '!tables!zV2oJy8JZE0nngRY' @ 72057594037927935 : 1 .. '!tables.results!zV2oJy8JZE0nngRY.wTMX1TbxljHmHImp' @ 0 : 0; will stop at (end)
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
MANIFEST-000047
|
MANIFEST-000055
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:39:06.644879 7ff1ed3ff6c0 Recovering log #45
|
2023/12/01-14:01:31.650984 7facd37fe6c0 Recovering log #53
|
||||||
2023/12/01-09:39:06.655562 7ff1ed3ff6c0 Delete type=3 #43
|
2023/12/01-14:01:31.661531 7facd37fe6c0 Delete type=3 #51
|
||||||
2023/12/01-09:39:06.655619 7ff1ed3ff6c0 Delete type=0 #45
|
2023/12/01-14:01:31.661635 7facd37fe6c0 Delete type=0 #53
|
||||||
2023/12/01-09:50:10.726878 7fef56ffd6c0 Level-0 table #50: started
|
2023/12/01-14:02:58.900371 7faa52bff6c0 Level-0 table #58: started
|
||||||
2023/12/01-09:50:10.726905 7fef56ffd6c0 Level-0 table #50: 0 bytes OK
|
2023/12/01-14:02:58.900395 7faa52bff6c0 Level-0 table #58: 0 bytes OK
|
||||||
2023/12/01-09:50:10.739569 7fef56ffd6c0 Delete type=0 #48
|
2023/12/01-14:02:58.906443 7faa52bff6c0 Delete type=0 #56
|
||||||
2023/12/01-09:50:10.754444 7fef56ffd6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
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-09:50:10.754493 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
2023/12/01-09:36:46.722223 7ff1ed3ff6c0 Recovering log #41
|
2023/12/01-13:53:39.480910 7face91fa6c0 Recovering log #49
|
||||||
2023/12/01-09:36:46.732190 7ff1ed3ff6c0 Delete type=3 #39
|
2023/12/01-13:53:39.490942 7face91fa6c0 Delete type=3 #47
|
||||||
2023/12/01-09:36:46.732256 7ff1ed3ff6c0 Delete type=0 #41
|
2023/12/01-13:53:39.491036 7face91fa6c0 Delete type=0 #49
|
||||||
2023/12/01-09:37:12.134235 7fef56ffd6c0 Level-0 table #46: started
|
2023/12/01-13:59:53.198430 7faa52bff6c0 Level-0 table #54: started
|
||||||
2023/12/01-09:37:12.134301 7fef56ffd6c0 Level-0 table #46: 0 bytes OK
|
2023/12/01-13:59:53.198486 7faa52bff6c0 Level-0 table #54: 0 bytes OK
|
||||||
2023/12/01-09:37:12.141345 7fef56ffd6c0 Delete type=0 #44
|
2023/12/01-13:59:53.237011 7faa52bff6c0 Delete type=0 #52
|
||||||
2023/12/01-09:37:12.155653 7fef56ffd6c0 Manual compaction at level-0 from '!folders!ZlJO2XdIsLX1cdS5' @ 72057594037927935 : 1 .. '!items!y19w83YQyWRaabkv' @ 0 : 0; will stop at (end)
|
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-09:37:12.155716 7fef56ffd6c0 Manual compaction at level-1 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)
|
||||||
|
Binary file not shown.
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "fvtt-wasteland",
|
"id": "fvtt-wasteland",
|
||||||
"description": "Wasteland RPG for FoundryVTT",
|
"description": "Wasteland RPG for FoundryVTT",
|
||||||
"version": "11.0.13",
|
"version": "11.0.14",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Uberwald/LeRatierBretonnien",
|
"name": "Uberwald/LeRatierBretonnien",
|
||||||
@ -23,7 +23,7 @@
|
|||||||
"gridUnits": "m",
|
"gridUnits": "m",
|
||||||
"license": "LICENSE.txt",
|
"license": "LICENSE.txt",
|
||||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-wasteland/raw/branch/main/system.json",
|
"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.13.zip",
|
"download": "https://www.uberwald.me/gitea/public/fvtt-wasteland/archive/fvtt-wasteland-v11.0.14.zip",
|
||||||
"packs": [
|
"packs": [
|
||||||
{
|
{
|
||||||
"type": "Item",
|
"type": "Item",
|
||||||
|
286
template.json
286
template.json
@ -122,141 +122,175 @@
|
|||||||
"bouclier",
|
"bouclier",
|
||||||
"charme",
|
"charme",
|
||||||
"artifex",
|
"artifex",
|
||||||
"peuple"
|
"peuple",
|
||||||
|
"don",
|
||||||
|
"hubris"
|
||||||
],
|
],
|
||||||
"pouvoir": {
|
"don": {
|
||||||
"chemin": "force",
|
|
||||||
"attribut": "cla",
|
|
||||||
"competence": "",
|
|
||||||
"seuil": 0,
|
|
||||||
"coutpsyche": 0,
|
"coutpsyche": 0,
|
||||||
"complexite": 0,
|
|
||||||
"cible": "",
|
|
||||||
"duree": "",
|
|
||||||
"templates": [
|
"templates": [
|
||||||
"base"
|
"base"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"charme": {
|
"hubris": {
|
||||||
"charmetype": "tour",
|
"hubristype": "mental",
|
||||||
"resultats": [
|
|
||||||
{"value":-1, "description": ""},
|
|
||||||
{"value":-1, "description": ""},
|
|
||||||
{"value":-1, "description": ""},
|
|
||||||
{"value":-1, "description": ""},
|
|
||||||
{"value":-1, "description": ""},
|
|
||||||
{"value":-1, "description": ""}
|
|
||||||
],
|
|
||||||
"templates": [
|
"templates": [
|
||||||
"base"
|
"base"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"artifex": {
|
"pouvoir": {
|
||||||
"artifextype": "vapeur",
|
"chemin": "force",
|
||||||
"complexite": 0,
|
"attribut": "cla",
|
||||||
"dureerealisation": "",
|
"competence": "",
|
||||||
"tempsmiseenroute": "",
|
"seuil": 0,
|
||||||
"defautcourant": "",
|
"coutpsyche": 0,
|
||||||
"competence": "",
|
"complexite": 0,
|
||||||
"templates": [
|
"cible": "",
|
||||||
"base"
|
"duree": "",
|
||||||
]
|
"formulesimple": "",
|
||||||
},
|
"formuleetendue": "",
|
||||||
"mutation": {
|
"templates": [
|
||||||
"templates": [
|
"base"
|
||||||
"base"
|
]
|
||||||
]
|
},
|
||||||
},
|
"charme": {
|
||||||
"peuple": {
|
"charmetype": "tour",
|
||||||
"templates": [
|
"resultats": [
|
||||||
"base"
|
{
|
||||||
]
|
"value": -1,
|
||||||
},
|
"description": ""
|
||||||
"origine": {
|
},
|
||||||
"templates": [
|
{
|
||||||
"base"
|
"value": -1,
|
||||||
]
|
"description": ""
|
||||||
},
|
},
|
||||||
"heritage": {
|
{
|
||||||
"templates": [
|
"value": -1,
|
||||||
"base"
|
"description": ""
|
||||||
]
|
},
|
||||||
},
|
{
|
||||||
"metier": {
|
"value": -1,
|
||||||
"templates": [
|
"description": ""
|
||||||
"base"
|
},
|
||||||
]
|
{
|
||||||
},
|
"value": -1,
|
||||||
"capacite": {
|
"description": ""
|
||||||
"templates": [
|
},
|
||||||
"base"
|
{
|
||||||
]
|
"value": -1,
|
||||||
},
|
"description": ""
|
||||||
"equipement": {
|
}
|
||||||
"rarete": 0,
|
],
|
||||||
"prix": 0,
|
"templates": [
|
||||||
"templates": [
|
"base"
|
||||||
"base"
|
]
|
||||||
]
|
},
|
||||||
},
|
"artifex": {
|
||||||
"arme": {
|
"artifextype": "vapeur",
|
||||||
"typearme": "",
|
"complexite": 0,
|
||||||
"isdefense": false,
|
"dureerealisation": "",
|
||||||
"bonusmaniementoff": 0,
|
"tempsmiseenroute": "",
|
||||||
"bonusmaniementdef": 0,
|
"defautcourant": "",
|
||||||
"degats": "",
|
"competence": "",
|
||||||
"nonletaux": false,
|
"templates": [
|
||||||
"deuxmains": false,
|
"base"
|
||||||
"courte": 0,
|
]
|
||||||
"moyenne": 0,
|
},
|
||||||
"longue": 0,
|
"mutation": {
|
||||||
"tr": 0,
|
"templates": [
|
||||||
"rarete": 0,
|
"base"
|
||||||
"prix": 0,
|
]
|
||||||
"equipped": false,
|
},
|
||||||
"templates": [
|
"peuple": {
|
||||||
"base"
|
"templates": [
|
||||||
]
|
"base"
|
||||||
},
|
]
|
||||||
"competence": {
|
},
|
||||||
"niveau": 0,
|
"origine": {
|
||||||
"attribut1": "",
|
"templates": [
|
||||||
"attribut2": "",
|
"base"
|
||||||
"attribut3": "",
|
]
|
||||||
"doublebonus": false,
|
},
|
||||||
"predilections": [],
|
"heritage": {
|
||||||
"templates": [
|
"templates": [
|
||||||
"base"
|
"base"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"protection": {
|
"metier": {
|
||||||
"typeprotection": "",
|
"templates": [
|
||||||
"protection": 0,
|
"base"
|
||||||
"degats": "",
|
]
|
||||||
"rarete": 0,
|
},
|
||||||
"prix": 0,
|
"capacite": {
|
||||||
"equipped": false,
|
"templates": [
|
||||||
"templates": [
|
"base"
|
||||||
"base"
|
]
|
||||||
]
|
},
|
||||||
},
|
"equipement": {
|
||||||
"bouclier": {
|
"rarete": 0,
|
||||||
"bonusdefense": 0,
|
"prix": 0,
|
||||||
"degats": "",
|
"templates": [
|
||||||
"nonletaux": false,
|
"base"
|
||||||
"rarete": 0,
|
]
|
||||||
"prix": 0,
|
},
|
||||||
"equipped": false,
|
"arme": {
|
||||||
"templates": [
|
"typearme": "",
|
||||||
"base"
|
"isdefense": false,
|
||||||
]
|
"bonusmaniementoff": 0,
|
||||||
},
|
"bonusmaniementdef": 0,
|
||||||
"monnaie": {
|
"degats": "",
|
||||||
"quantite": 0,
|
"nonletaux": false,
|
||||||
"unite": "",
|
"deuxmains": false,
|
||||||
"templates": [
|
"courte": 0,
|
||||||
"base"
|
"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"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -240,7 +240,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{#each pouvoirs as |pouvoir key|}}
|
{{#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}}" />
|
<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-long label-padding-left"><a class="roll-pouvoir">{{pouvoir.name}}</a></span>
|
||||||
<span class="item-field-label-medium">{{upperFirst pouvoir.system.chemin}}</span>
|
<span class="item-field-label-medium">{{upperFirst pouvoir.system.chemin}}</span>
|
||||||
@ -256,30 +256,6 @@
|
|||||||
</ul>
|
</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-field-label-long-title">
|
|
||||||
<h3><label class="items-title-text">Charmes</label></h3>
|
|
||||||
</span>
|
|
||||||
<div class="item-filler"> </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"> </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">
|
<div class="sheet-box color-bg-archetype">
|
||||||
<ul class="item-list alternate-list">
|
<ul class="item-list alternate-list">
|
||||||
<li class="item flexrow list-item items-title-bg">
|
<li class="item flexrow list-item items-title-bg">
|
||||||
@ -291,7 +267,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{#each tours as |tour key|}}
|
{{#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}}" />
|
<img class="item-name-img" src="{{tour.img}}" />
|
||||||
<span class="item-field-label-long label-padding-left">
|
<span class="item-field-label-long label-padding-left">
|
||||||
<a class="roll-charme">{{tour.name}}</a></span>
|
<a class="roll-charme">{{tour.name}}</a></span>
|
||||||
@ -305,6 +281,30 @@
|
|||||||
</ul>
|
</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-field-label-long-title">
|
||||||
|
<h3><label class="items-title-text">Charmes</label></h3>
|
||||||
|
</span>
|
||||||
|
<div class="item-filler"> </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"> </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">
|
<div class="sheet-box color-bg-archetype">
|
||||||
<ul class="item-list alternate-list">
|
<ul class="item-list alternate-list">
|
||||||
<li class="item flexrow list-item items-title-bg">
|
<li class="item flexrow list-item items-title-bg">
|
||||||
@ -316,7 +316,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
{{#each mutations as |mutation key|}}
|
{{#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}}" />
|
<img class="item-name-img" src="{{mutation.img}}" />
|
||||||
<span class="item-field-label-long-title label-padding-left">{{mutation.name}}</span>
|
<span class="item-field-label-long-title label-padding-left">{{mutation.name}}</span>
|
||||||
<div class="item-filler"> </div>
|
<div class="item-filler"> </div>
|
||||||
@ -329,6 +329,62 @@
|
|||||||
</ul>
|
</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-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"> </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"> </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"> </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"> </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>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -528,6 +584,16 @@
|
|||||||
<div class="grid grid-3col">
|
<div class="grid grid-3col">
|
||||||
<div>
|
<div>
|
||||||
<ul class="item-list alternate-list">
|
<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}}">
|
<li class="item flexrow" data-item-id="{{origine._id}}">
|
||||||
<label class="generic-label">Origine : </label>
|
<label class="generic-label">Origine : </label>
|
||||||
<label class="generic-label">{{origine.name}}</label>
|
<label class="generic-label">{{origine.name}}</label>
|
||||||
|
25
templates/item-don-sheet.html
Normal file
25
templates/item-don-sheet.html
Normal 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>
|
31
templates/item-hubris-sheet.html
Normal file
31
templates/item-hubris-sheet.html
Normal 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>
|
@ -57,7 +57,17 @@
|
|||||||
<label class="generic-label">Durée : </label>
|
<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" />
|
<input type="text" class="padd-right status-small-label color-class-common" name="system.duree" value="{{system.duree}}" data-dtype="String" />
|
||||||
</span>
|
</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}}
|
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user