Compare commits
3 Commits
fvtt-les-h
...
fvtt-les-h
| Author | SHA1 | Date | |
|---|---|---|---|
| cc7de0e53c | |||
| 4d41986c12 | |||
| d04731f475 |
@@ -172,10 +172,17 @@ export class HeritiersActor extends Actor {
|
||||
magie.rangGenericName = game.system.lesheritiers.config.rangName[magie.rang];
|
||||
console.log("Magie", item.name, item.system.niveau, magie.rang, magie.rangGenericName)
|
||||
magie.rangSpecificName = game.system.lesheritiers.config.rangNameSpecific[item.name][magie.rangGenericName];
|
||||
magie.sorts = []
|
||||
magie.sorts = {
|
||||
1: { nomNiveau: magie.competence.system.nomniveau["1"], sorts: [] },
|
||||
2: { nomNiveau: magie.competence.system.nomniveau["2"], sorts: [] },
|
||||
3: { nomNiveau: magie.competence.system.nomniveau["3"], sorts: [] },
|
||||
4: { nomNiveau: magie.competence.system.nomniveau["4"], sorts: [] }
|
||||
}
|
||||
for (let sort of this.items) {
|
||||
if (sort.type == "sort" && sort.system.competence == item.name) {
|
||||
magie.sorts.push(sort)
|
||||
let sortObj = foundry.utils.duplicate(sort)
|
||||
sortObj.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau))
|
||||
magie.sorts[Number(sort.system.niveau)].sorts.push(sortObj)
|
||||
}
|
||||
}
|
||||
magieList.push(magie)
|
||||
@@ -717,12 +724,12 @@ export class HeritiersActor extends Actor {
|
||||
inDecCarac(key, incDec) {
|
||||
let carac = this.system.caracteristiques[key]
|
||||
carac.value += incDec
|
||||
if (carac.value < 0 || carac.value > carac.max) {
|
||||
ui.notifications.warn("Pas assez de points dans cette caractéristique !")
|
||||
if (carac.value < 0 || carac.value > carac.rang) {
|
||||
ui.notifications.warn("Pas assez de points dans cette caractéristique ou rang max atteint !")
|
||||
return false
|
||||
}
|
||||
carac.value = Math.max(carac.value, 0)
|
||||
carac.value = Math.min(carac.value, carac.max)
|
||||
carac.value = Math.min(carac.value, carac.rang)
|
||||
this.update({ [`system.caracteristiques.${key}`]: carac })
|
||||
return true
|
||||
}
|
||||
@@ -740,18 +747,27 @@ export class HeritiersActor extends Actor {
|
||||
rollData.mode = "sort"
|
||||
rollData.sort = foundry.utils.duplicate(sort)
|
||||
rollData.sdValue = HeritiersUtility.getSDSortValue(Number(sort.system.niveau))
|
||||
if (Number(sort.system.sdspecial) && Number(sort.system.sdspecial) > 0) {
|
||||
rollData.sdValue = Number(sort.system.sdspecial)
|
||||
}
|
||||
rollData.sortPointsAme = Number(sort.system.niveau)
|
||||
rollData.totalEsprit = 1
|
||||
if (sort.system.competence == "Grand Langage") {
|
||||
rollData.sortPointsAme *= 2
|
||||
rollData.totalEsprit = Math.floor((rollData.sortPointsAme) / 3)
|
||||
}
|
||||
if (rollData.sortPointsAme > this.system.magie.pointsame.value) {
|
||||
// Vérifier si au moins 1 point d'Esprit est disponible
|
||||
if (this.system.caracteristiques.esp.value < 1) {
|
||||
ui.notifications.warn("Pas assez de Points d'Esprit ni de Points d'Ame pour lancer ce sort (requis: 1, disponible: " + this.system.caracteristiques.esp.value + ")")
|
||||
if (this.system.caracteristiques.esp.value <= rollData.totalEsprit) {
|
||||
ui.notifications.warn(`Pas assez de Points d'Esprit ni de Points d'Ame pour lancer ce sort (requis: ${rollData.totalEsprit}, disponible: ${this.system.caracteristiques.esp.value})`)
|
||||
return
|
||||
} else {
|
||||
rollData.spendEsprit = true
|
||||
ui.notifications.warn(`Vous n'avez pas assez de Points d'Ame pour lancer ce sort (requis: ${rollData.sortPointsAme}, disponible: ${this.system.magie.pointsame.value}). Un Point d'Esprit sera utilisé à la place si vous effectuez le lancer.`)
|
||||
ui.notifications.warn(`Vous n'avez pas assez de Points d'Ame pour lancer ce sort (requis: ${rollData.sortPointsAme}, disponible: ${this.system.magie.pointsame.value}).`)
|
||||
ui.notifications.warn(`${rollData.totalEsprit} Points d'Esprit seront utilisés à la place si vous effectuez le lancer.`)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (sort.system.carac2 != "none") {
|
||||
// get the best carac between carac1 and carac2
|
||||
if (this.system.caracteristiques[sort.system.carac1].value > this.system.caracteristiques[sort.system.carac2].value) {
|
||||
|
||||
@@ -200,6 +200,15 @@ export const HERITIERS_CONFIG = {
|
||||
"3": "3",
|
||||
"4": "4"
|
||||
},
|
||||
listRangSort: {
|
||||
"1": "1",
|
||||
"2": "2",
|
||||
"3": "3",
|
||||
"4": "4",
|
||||
"5": "5",
|
||||
"6": "6",
|
||||
"7": "7"
|
||||
},
|
||||
listNiveau: {
|
||||
"0": "0",
|
||||
"1": "1",
|
||||
@@ -251,6 +260,24 @@ export const HERITIERS_CONFIG = {
|
||||
"Maître": "Maître",
|
||||
"Grand Maître": "Éminence"
|
||||
},
|
||||
"Magie du Clan - Souffle du Combat": {
|
||||
"Novice": "Apprenti",
|
||||
"Adepte": "Disciple",
|
||||
"Maître": "Maître",
|
||||
"Grand Maître": "Éminence"
|
||||
},
|
||||
"Magie du Clan - Souffle du Mouvement": {
|
||||
"Novice": "Apprenti",
|
||||
"Adepte": "Disciple",
|
||||
"Maître": "Maître",
|
||||
"Grand Maître": "Éminence"
|
||||
},
|
||||
"Magie du Clan - Souffle de l'Esprit": {
|
||||
"Novice": "Apprenti",
|
||||
"Adepte": "Disciple",
|
||||
"Maître": "Maître",
|
||||
"Grand Maître": "Éminence"
|
||||
},
|
||||
"Théurgie": {
|
||||
"Novice": "Frère",
|
||||
"Adepte": "Père",
|
||||
|
||||
@@ -583,7 +583,7 @@ export class HeritiersUtility {
|
||||
// Gestion sort et points d'âme
|
||||
if (rollData.mode == "sort") {
|
||||
if (rollData.spendEsprit) {
|
||||
actor.inDecCarac("esp", -1)
|
||||
actor.inDecCarac("esp", rollData.totalEsprit)
|
||||
} else {
|
||||
actor.incDecPointsAme(-rollData.sortPointsAme)
|
||||
if (rollData.sort.system.competence == "Magie du Clan") {
|
||||
|
||||
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.878225 7f12ef7fe6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.895947 7f12ef7fe6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.896018 7f12ef7fe6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.124427 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.124524 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.131139 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.138115 7f12edffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.151997 7f12edffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.231652 7f4e4bfff6c0 Recovering log #254
|
||||
2025/09/14-18:44:06.327997 7f4e4bfff6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:06.328106 7f4e4bfff6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.870045 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.870068 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.876035 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.890009 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.890094 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.841305 7f12eeffd6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.894721 7f12eeffd6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.894801 7f12eeffd6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.447479 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.447513 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.453775 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.453928 7f12edffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.453962 7f12edffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.936465 7f4e4b7fe6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.947148 7f4e4b7fe6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.947197 7f4e4b7fe6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:00.803313 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:00.803346 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:00.859097 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:00.958916 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:01.052684 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1NhJH4IJpxsGmLB8' @ 72057594037927935 : 1 .. '!items!y1yOenfAJTsb3r6e' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.920597 7f12effff6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.937506 7f12effff6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.937577 7f12effff6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.152019 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.152074 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.158671 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.173243 7f12edffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.185248 7f12edffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.392750 7f4e4b7fe6c0 Recovering log #254
|
||||
2025/09/14-18:44:06.445647 7f4e4b7fe6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:06.445742 7f4e4b7fe6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.907829 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.907864 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.914179 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.922012 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.932255 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.953525 7f12ef7fe6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.999140 7f12ef7fe6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.999193 7f12ef7fe6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.461664 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.461699 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.467731 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.481357 7f12edffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.481393 7f12edffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.963809 7f4e4bfff6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.973991 7f4e4bfff6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.974092 7f4e4bfff6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:01.015826 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:01.015851 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:01.052522 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:01.082840 7f4e49ffb6c0 Manual compaction at level-0 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:01.145583 7f4e49ffb6c0 Manual compaction at level-1 from '!items!1ETVaPBtjDtzelK1' @ 72057594037927935 : 1 .. '!items!zbsVCsWxRzkzzG1N' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.839532 7f12ee7fc6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.855749 7f12ee7fc6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.855852 7f12ee7fc6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.106127 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.106209 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.112456 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.138064 7f12edffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.138149 7f12edffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.094503 7f4e4affd6c0 Recovering log #254
|
||||
2025/09/14-18:44:06.148796 7f4e4affd6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:06.148856 7f4e4affd6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.862468 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.862531 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.869915 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.889984 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.890073 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.739184 7f12ef7fe6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.787438 7f12ef7fe6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.787511 7f12ef7fe6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.402280 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.402330 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.408548 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.427555 7f12edffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.427616 7f12edffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.910946 7f4e4affd6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.921365 7f4e4affd6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.921475 7f4e4affd6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:00.762129 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:00.762193 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:00.803110 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:00.958892 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.958971 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0fPXtA5LkLgG8uDj' @ 72057594037927935 : 1 .. '!items!zvtBlG6KCIn0oCVk' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.767828 7f12effff6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.796027 7f12effff6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.796112 7f12effff6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.084910 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.084968 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.091780 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.105825 7f12edffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.105919 7f12edffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:05.833954 7f4e4bfff6c0 Recovering log #254
|
||||
2025/09/14-18:44:05.936437 7f4e4bfff6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:05.936567 7f4e4bfff6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.849402 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.849447 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.856023 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.862159 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.862225 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.532032 7f12ef7fe6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.583613 7f12ef7fe6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.583679 7f12ef7fe6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.414597 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.414620 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.420650 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.427592 7f12edffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.427633 7f12edffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.872639 7f4e4b7fe6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.883723 7f4e4b7fe6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.883847 7f4e4b7fe6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:00.687324 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:00.687380 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:00.729665 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:00.761866 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.761925 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0EAAt0qSzcD9VRBH' @ 72057594037927935 : 1 .. '!items!zfpjROW9LDAlXUkN' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.818936 7f12ef7fe6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.835911 7f12ef7fe6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.836028 7f12ef7fe6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.091988 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.092048 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.098923 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.105848 7f12edffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.105947 7f12edffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.033365 7f4e4b7fe6c0 Recovering log #254
|
||||
2025/09/14-18:44:06.092152 7f4e4b7fe6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:06.092214 7f4e4b7fe6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.856120 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.856146 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.862040 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.862231 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.862287 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.678492 7f12eeffd6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.736918 7f12eeffd6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.737004 7f12eeffd6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.408642 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.408666 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.414489 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.427576 7f12edffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.427625 7f12edffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.898041 7f4e4a7fc6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.908137 7f4e4a7fc6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.908184 7f4e4a7fc6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:00.630523 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:00.630565 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:00.687084 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:00.761851 7f4e49ffb6c0 Manual compaction at level-0 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.761913 7f4e49ffb6c0 Manual compaction at level-1 from '!items!0cNSRJVPk3GbvxfD' @ 72057594037927935 : 1 .. '!items!yWDg2KlXEz33TSmZ' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000223
|
||||
MANIFEST-000260
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.747816 7f12ee7fc6c0 Recovering log #221
|
||||
2025/08/13-09:34:30.764412 7f12ee7fc6c0 Delete type=3 #219
|
||||
2025/08/13-09:34:30.764577 7f12ee7fc6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.078169 7f12edffb6c0 Level-0 table #226: started
|
||||
2025/08/13-09:38:15.078262 7f12edffb6c0 Level-0 table #226: 0 bytes OK
|
||||
2025/08/13-09:38:15.084668 7f12edffb6c0 Delete type=0 #224
|
||||
2025/08/13-09:38:15.105797 7f12edffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.105887 7f12edffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:05.761810 7f4e4b7fe6c0 Recovering log #258
|
||||
2025/09/14-18:44:05.830903 7f4e4b7fe6c0 Delete type=3 #256
|
||||
2025/09/14-18:44:05.831031 7f4e4b7fe6c0 Delete type=0 #258
|
||||
2025/09/14-20:11:26.842270 7f4e49ffb6c0 Level-0 table #263: started
|
||||
2025/09/14-20:11:26.842297 7f4e49ffb6c0 Level-0 table #263: 0 bytes OK
|
||||
2025/09/14-20:11:26.849193 7f4e49ffb6c0 Delete type=0 #261
|
||||
2025/09/14-20:11:26.862148 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.862217 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.475992 7f12effff6c0 Recovering log #217
|
||||
2025/08/12-23:22:09.530135 7f12effff6c0 Delete type=3 #215
|
||||
2025/08/12-23:22:09.530186 7f12effff6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.420774 7f12edffb6c0 Level-0 table #222: started
|
||||
2025/08/12-23:24:44.420800 7f12edffb6c0 Level-0 table #222: 0 bytes OK
|
||||
2025/08/12-23:24:44.427391 7f12edffb6c0 Delete type=0 #220
|
||||
2025/08/12-23:24:44.427605 7f12edffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.427641 7f12edffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.860574 7f4e4a7fc6c0 Recovering log #254
|
||||
2025/09/14-18:32:45.870106 7f4e4a7fc6c0 Delete type=3 #252
|
||||
2025/09/14-18:32:45.870217 7f4e4a7fc6c0 Delete type=0 #254
|
||||
2025/09/14-18:44:00.729801 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-18:44:00.729826 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-18:44:00.761619 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-18:44:00.761883 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.761939 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!FBCujRu055QLePB2' @ 72057594037927935 : 1 .. '!items!zEl2NQsnCpELVWzh' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/competences/MANIFEST-000260
Normal file
BIN
packs/competences/MANIFEST-000260
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000220
|
||||
MANIFEST-000256
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.798607 7f12eeffd6c0 Recovering log #218
|
||||
2025/08/13-09:34:30.815801 7f12eeffd6c0 Delete type=3 #216
|
||||
2025/08/13-09:34:30.815877 7f12eeffd6c0 Delete type=0 #218
|
||||
2025/08/13-09:38:15.099158 7f12edffb6c0 Level-0 table #223: started
|
||||
2025/08/13-09:38:15.099214 7f12edffb6c0 Level-0 table #223: 0 bytes OK
|
||||
2025/08/13-09:38:15.105555 7f12edffb6c0 Delete type=0 #221
|
||||
2025/08/13-09:38:15.105870 7f12edffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.105967 7f12edffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:05.938881 7f4e4a7fc6c0 Recovering log #254
|
||||
2025/09/14-18:44:06.030523 7f4e4a7fc6c0 Delete type=3 #252
|
||||
2025/09/14-18:44:06.030588 7f4e4a7fc6c0 Delete type=0 #254
|
||||
2025/09/14-20:11:26.835922 7f4e49ffb6c0 Level-0 table #259: started
|
||||
2025/09/14-20:11:26.836012 7f4e49ffb6c0 Level-0 table #259: 0 bytes OK
|
||||
2025/09/14-20:11:26.842166 7f4e49ffb6c0 Delete type=0 #257
|
||||
2025/09/14-20:11:26.862136 7f4e49ffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.862210 7f4e49ffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.585932 7f12ee7fc6c0 Recovering log #214
|
||||
2025/08/12-23:22:09.675400 7f12ee7fc6c0 Delete type=3 #212
|
||||
2025/08/12-23:22:09.675482 7f12ee7fc6c0 Delete type=0 #214
|
||||
2025/08/12-23:24:44.434363 7f12edffb6c0 Level-0 table #219: started
|
||||
2025/08/12-23:24:44.434400 7f12edffb6c0 Level-0 table #219: 0 bytes OK
|
||||
2025/08/12-23:24:44.440785 7f12edffb6c0 Delete type=0 #217
|
||||
2025/08/12-23:24:44.453906 7f12edffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.453946 7f12edffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.886170 7f4e4bfff6c0 Recovering log #250
|
||||
2025/09/14-18:32:45.895851 7f4e4bfff6c0 Delete type=3 #248
|
||||
2025/09/14-18:32:45.895945 7f4e4bfff6c0 Delete type=0 #250
|
||||
2025/09/14-18:44:00.559996 7f4e49ffb6c0 Level-0 table #255: started
|
||||
2025/09/14-18:44:00.560039 7f4e49ffb6c0 Level-0 table #255: 0 bytes OK
|
||||
2025/09/14-18:44:00.630276 7f4e49ffb6c0 Delete type=0 #253
|
||||
2025/09/14-18:44:00.761829 7f4e49ffb6c0 Manual compaction at level-0 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.761898 7f4e49ffb6c0 Manual compaction at level-1 from '!items!2QqvtClSVnh5ejXu' @ 72057594037927935 : 1 .. '!items!xzRJ6JP1HqoqxLdj' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
packs/magie-sorts/000032.ldb
Normal file
BIN
packs/magie-sorts/000032.ldb
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000019
|
||||
MANIFEST-000057
|
||||
|
||||
@@ -1,15 +1,8 @@
|
||||
2025/08/13-09:34:30.858975 7f12eeffd6c0 Recovering log #17
|
||||
2025/08/13-09:34:30.873975 7f12eeffd6c0 Delete type=3 #15
|
||||
2025/08/13-09:34:30.874079 7f12eeffd6c0 Delete type=0 #17
|
||||
2025/08/13-09:38:15.112710 7f12edffb6c0 Level-0 table #22: started
|
||||
2025/08/13-09:38:15.116893 7f12edffb6c0 Level-0 table #22: 7078 bytes OK
|
||||
2025/08/13-09:38:15.124058 7f12edffb6c0 Delete type=0 #20
|
||||
2025/08/13-09:38:15.138090 7f12edffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.138172 7f12edffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at '!items!z9898zcMia5dzrmb' @ 115 : 1
|
||||
2025/08/13-09:38:15.138186 7f12edffb6c0 Compacting 1@1 + 1@2 files
|
||||
2025/08/13-09:38:15.144132 7f12edffb6c0 Generated table #23@1: 89 keys, 73291 bytes
|
||||
2025/08/13-09:38:15.144201 7f12edffb6c0 Compacted 1@1 + 1@2 files => 73291 bytes
|
||||
2025/08/13-09:38:15.151305 7f12edffb6c0 compacted to: files[ 0 0 1 0 0 0 0 ]
|
||||
2025/08/13-09:38:15.151515 7f12edffb6c0 Delete type=2 #14
|
||||
2025/08/13-09:38:15.151820 7f12edffb6c0 Delete type=2 #22
|
||||
2025/08/13-09:38:15.158930 7f12edffb6c0 Manual compaction at level-1 from '!items!z9898zcMia5dzrmb' @ 115 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.151906 7f4e4a7fc6c0 Recovering log #55
|
||||
2025/09/14-18:44:06.228905 7f4e4a7fc6c0 Delete type=3 #53
|
||||
2025/09/14-18:44:06.229001 7f4e4a7fc6c0 Delete type=0 #55
|
||||
2025/09/14-20:11:26.876107 7f4e49ffb6c0 Level-0 table #60: started
|
||||
2025/09/14-20:11:26.876127 7f4e49ffb6c0 Level-0 table #60: 0 bytes OK
|
||||
2025/09/14-20:11:26.882585 7f4e49ffb6c0 Delete type=0 #58
|
||||
2025/09/14-20:11:26.890030 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.890116 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.790283 7f12effff6c0 Recovering log #12
|
||||
2025/08/12-23:22:09.838285 7f12effff6c0 Delete type=3 #10
|
||||
2025/08/12-23:22:09.838351 7f12effff6c0 Delete type=0 #12
|
||||
2025/08/12-23:24:44.440907 7f12edffb6c0 Level-0 table #18: started
|
||||
2025/08/12-23:24:44.440937 7f12edffb6c0 Level-0 table #18: 0 bytes OK
|
||||
2025/08/12-23:24:44.447316 7f12edffb6c0 Delete type=0 #16
|
||||
2025/08/12-23:24:44.453918 7f12edffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.453954 7f12edffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.923890 7f4e4bfff6c0 Recovering log #51
|
||||
2025/09/14-18:32:45.933491 7f4e4bfff6c0 Delete type=3 #49
|
||||
2025/09/14-18:32:45.933605 7f4e4bfff6c0 Delete type=0 #51
|
||||
2025/09/14-18:44:00.897409 7f4e49ffb6c0 Level-0 table #56: started
|
||||
2025/09/14-18:44:00.897475 7f4e49ffb6c0 Level-0 table #56: 0 bytes OK
|
||||
2025/09/14-18:44:00.958678 7f4e49ffb6c0 Delete type=0 #54
|
||||
2025/09/14-18:44:00.958950 7f4e49ffb6c0 Manual compaction at level-0 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.958987 7f4e49ffb6c0 Manual compaction at level-1 from '!folders!NE8l8XLXdVUw0aZm' @ 72057594037927935 : 1 .. '!items!zjQQhJpujpdbG4zl' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/magie-sorts/MANIFEST-000057
Normal file
BIN
packs/magie-sorts/MANIFEST-000057
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000221
|
||||
MANIFEST-000257
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.899271 7f12ee7fc6c0 Recovering log #219
|
||||
2025/08/13-09:34:30.915571 7f12ee7fc6c0 Delete type=3 #217
|
||||
2025/08/13-09:34:30.915754 7f12ee7fc6c0 Delete type=0 #219
|
||||
2025/08/13-09:38:15.131400 7f12edffb6c0 Level-0 table #224: started
|
||||
2025/08/13-09:38:15.131461 7f12edffb6c0 Level-0 table #224: 0 bytes OK
|
||||
2025/08/13-09:38:15.137830 7f12edffb6c0 Delete type=0 #222
|
||||
2025/08/13-09:38:15.138132 7f12edffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.151971 7f12edffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.330863 7f4e4affd6c0 Recovering log #255
|
||||
2025/09/14-18:44:06.389509 7f4e4affd6c0 Delete type=3 #253
|
||||
2025/09/14-18:44:06.389593 7f4e4affd6c0 Delete type=0 #255
|
||||
2025/09/14-20:11:26.882779 7f4e49ffb6c0 Level-0 table #260: started
|
||||
2025/09/14-20:11:26.882821 7f4e49ffb6c0 Level-0 table #260: 0 bytes OK
|
||||
2025/09/14-20:11:26.889748 7f4e49ffb6c0 Delete type=0 #258
|
||||
2025/09/14-20:11:26.890052 7f4e49ffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.890136 7f4e49ffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:09.898470 7f12ee7fc6c0 Recovering log #215
|
||||
2025/08/12-23:22:09.950596 7f12ee7fc6c0 Delete type=3 #213
|
||||
2025/08/12-23:22:09.950662 7f12ee7fc6c0 Delete type=0 #215
|
||||
2025/08/12-23:24:44.427852 7f12edffb6c0 Level-0 table #220: started
|
||||
2025/08/12-23:24:44.427889 7f12edffb6c0 Level-0 table #220: 0 bytes OK
|
||||
2025/08/12-23:24:44.434222 7f12edffb6c0 Delete type=0 #218
|
||||
2025/08/12-23:24:44.453893 7f12edffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.453937 7f12edffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.950155 7f4e4a7fc6c0 Recovering log #251
|
||||
2025/09/14-18:32:45.960336 7f4e4a7fc6c0 Delete type=3 #249
|
||||
2025/09/14-18:32:45.960389 7f4e4a7fc6c0 Delete type=0 #251
|
||||
2025/09/14-18:44:00.859221 7f4e49ffb6c0 Level-0 table #256: started
|
||||
2025/09/14-18:44:00.859248 7f4e49ffb6c0 Level-0 table #256: 0 bytes OK
|
||||
2025/09/14-18:44:00.897065 7f4e49ffb6c0 Delete type=0 #254
|
||||
2025/09/14-18:44:00.958928 7f4e49ffb6c0 Manual compaction at level-0 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:00.958978 7f4e49ffb6c0 Manual compaction at level-1 from '!items!19r9ijZUyvnlIqgm' @ 72057594037927935 : 1 .. '!items!zON0h5SjFyANjPnA' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000218
|
||||
MANIFEST-000254
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2025/08/13-09:34:30.941134 7f12eeffd6c0 Recovering log #216
|
||||
2025/08/13-09:34:30.958072 7f12eeffd6c0 Delete type=3 #214
|
||||
2025/08/13-09:34:30.958189 7f12eeffd6c0 Delete type=0 #216
|
||||
2025/08/13-09:38:15.158957 7f12edffb6c0 Level-0 table #221: started
|
||||
2025/08/13-09:38:15.159011 7f12edffb6c0 Level-0 table #221: 0 bytes OK
|
||||
2025/08/13-09:38:15.165278 7f12edffb6c0 Delete type=0 #219
|
||||
2025/08/13-09:38:15.185186 7f12edffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.448301 7f4e4bfff6c0 Recovering log #252
|
||||
2025/09/14-18:44:06.514630 7f4e4bfff6c0 Delete type=3 #250
|
||||
2025/09/14-18:44:06.514695 7f4e4bfff6c0 Delete type=0 #252
|
||||
2025/09/14-20:11:26.890302 7f4e49ffb6c0 Level-0 table #257: started
|
||||
2025/09/14-20:11:26.890371 7f4e49ffb6c0 Level-0 table #257: 0 bytes OK
|
||||
2025/09/14-20:11:26.896699 7f4e49ffb6c0 Delete type=0 #255
|
||||
2025/09/14-20:11:26.921989 7f4e49ffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
2025/08/12-23:22:10.001919 7f12eeffd6c0 Recovering log #212
|
||||
2025/08/12-23:22:10.057666 7f12eeffd6c0 Delete type=3 #210
|
||||
2025/08/12-23:22:10.057755 7f12eeffd6c0 Delete type=0 #212
|
||||
2025/08/12-23:24:44.454051 7f12edffb6c0 Level-0 table #217: started
|
||||
2025/08/12-23:24:44.454080 7f12edffb6c0 Level-0 table #217: 0 bytes OK
|
||||
2025/08/12-23:24:44.461512 7f12edffb6c0 Delete type=0 #215
|
||||
2025/08/12-23:24:44.481330 7f12edffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.977047 7f4e4b7fe6c0 Recovering log #248
|
||||
2025/09/14-18:32:45.987390 7f4e4b7fe6c0 Delete type=3 #246
|
||||
2025/09/14-18:32:45.987492 7f4e4b7fe6c0 Delete type=0 #248
|
||||
2025/09/14-18:44:00.959082 7f4e49ffb6c0 Level-0 table #253: started
|
||||
2025/09/14-18:44:00.959116 7f4e49ffb6c0 Level-0 table #253: 0 bytes OK
|
||||
2025/09/14-18:44:01.015683 7f4e49ffb6c0 Delete type=0 #251
|
||||
2025/09/14-18:44:01.082822 7f4e49ffb6c0 Manual compaction at level-0 from 'undefined' @ 72057594037927935 : 1 .. 'undefined' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
BIN
packs/profils/MANIFEST-000254
Normal file
BIN
packs/profils/MANIFEST-000254
Normal file
Binary file not shown.
@@ -1 +1 @@
|
||||
MANIFEST-000189
|
||||
MANIFEST-000225
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/13-09:34:30.962421 7f12ef7fe6c0 Recovering log #187
|
||||
2025/08/13-09:34:30.983901 7f12ef7fe6c0 Delete type=3 #185
|
||||
2025/08/13-09:34:30.983970 7f12ef7fe6c0 Delete type=0 #187
|
||||
2025/08/13-09:38:15.165535 7f12edffb6c0 Level-0 table #192: started
|
||||
2025/08/13-09:38:15.165599 7f12edffb6c0 Level-0 table #192: 0 bytes OK
|
||||
2025/08/13-09:38:15.172985 7f12edffb6c0 Delete type=0 #190
|
||||
2025/08/13-09:38:15.185225 7f12edffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/08/13-09:38:15.185290 7f12edffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:06.517911 7f4e4a7fc6c0 Recovering log #223
|
||||
2025/09/14-18:44:06.577494 7f4e4a7fc6c0 Delete type=3 #221
|
||||
2025/09/14-18:44:06.577559 7f4e4a7fc6c0 Delete type=0 #223
|
||||
2025/09/14-20:11:26.914401 7f4e49ffb6c0 Level-0 table #228: started
|
||||
2025/09/14-20:11:26.914450 7f4e49ffb6c0 Level-0 table #228: 0 bytes OK
|
||||
2025/09/14-20:11:26.921850 7f4e49ffb6c0 Delete type=0 #226
|
||||
2025/09/14-20:11:26.922020 7f4e49ffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-20:11:26.932273 7f4e49ffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
2025/08/12-23:22:10.060101 7f12effff6c0 Recovering log #183
|
||||
2025/08/12-23:22:10.105374 7f12effff6c0 Delete type=3 #181
|
||||
2025/08/12-23:22:10.105452 7f12effff6c0 Delete type=0 #183
|
||||
2025/08/12-23:24:44.474162 7f12edffb6c0 Level-0 table #188: started
|
||||
2025/08/12-23:24:44.474198 7f12edffb6c0 Level-0 table #188: 0 bytes OK
|
||||
2025/08/12-23:24:44.481148 7f12edffb6c0 Delete type=0 #186
|
||||
2025/08/12-23:24:44.481384 7f12edffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/08/12-23:24:44.481409 7f12edffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:32:45.989871 7f4e4a7fc6c0 Recovering log #219
|
||||
2025/09/14-18:32:46.000197 7f4e4a7fc6c0 Delete type=3 #217
|
||||
2025/09/14-18:32:46.000316 7f4e4a7fc6c0 Delete type=0 #219
|
||||
2025/09/14-18:44:01.052701 7f4e49ffb6c0 Level-0 table #224: started
|
||||
2025/09/14-18:44:01.052729 7f4e49ffb6c0 Level-0 table #224: 0 bytes OK
|
||||
2025/09/14-18:44:01.082634 7f4e49ffb6c0 Delete type=0 #222
|
||||
2025/09/14-18:44:01.145568 7f4e49ffb6c0 Manual compaction at level-0 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
2025/09/14-18:44:01.180947 7f4e49ffb6c0 Manual compaction at level-1 from '!scenes!8DjkNeeujp2qff1N' @ 72057594037927935 : 1 .. '!scenes!ypDutqjqZcr7lx6I' @ 0 : 0; will stop at (end)
|
||||
|
||||
Binary file not shown.
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"id": "fvtt-les-heritiers",
|
||||
"description": "Les Héritiers pour FoundryVTT",
|
||||
"version": "13.0.3",
|
||||
"version": "13.0.5",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Uberwald/LeRatierBretonnien",
|
||||
@@ -21,7 +21,7 @@
|
||||
},
|
||||
"license": "LICENSE.txt",
|
||||
"manifest": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/raw/branch/master/system.json",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-13.0.3.zip",
|
||||
"download": "https://www.uberwald.me/gitea/public/fvtt-les-heritiers/archive/fvtt-les-heritiers-13.0.5.zip",
|
||||
"languages": [
|
||||
{
|
||||
"lang": "fr",
|
||||
|
||||
@@ -343,6 +343,7 @@
|
||||
"categorie": "",
|
||||
"profil": "",
|
||||
"niveau": 0,
|
||||
"nomniveau": { "1": "", "2": "", "3": "", "4": ""},
|
||||
"predilection": false,
|
||||
"specialites": [],
|
||||
"ismagie": false,
|
||||
@@ -356,9 +357,11 @@
|
||||
},
|
||||
"sort": {
|
||||
"niveau": "1",
|
||||
"rang": "1",
|
||||
"competence": "Druidisme",
|
||||
"carac1": "esp",
|
||||
"carac2": "none",
|
||||
"sdspecial": "",
|
||||
"duree": "",
|
||||
"portee": "",
|
||||
"concentration": "",
|
||||
|
||||
@@ -507,27 +507,24 @@
|
||||
|
||||
{{#each magieList as |magie idx|}}
|
||||
<li class="item flexrow " data-item-id="{{magie.competence._id}}" data-item-type="competence">
|
||||
<h2 class="flexrow"><label class="items-title-text "><a class="roll-competence item-field-label-short"
|
||||
<h3 class="flexrow"><label class="items-title-text "><a class="roll-competence item-field-label-short"
|
||||
data-attr-key="tochoose">{{magie.name}} {{magie.competence.system.niveau}} </a> </label>
|
||||
<span>Rang : {{magie.rang}}</span>
|
||||
<!-- <span>Rang : {{magie.rang}}</span> -->
|
||||
<span>{{magie.rangSpecificName}}</span>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||
<a class="item-control item-delete" title="Supprimer l'item"><i class="fas fa-trash"></i></a>
|
||||
</div>
|
||||
</h2>
|
||||
</h3>
|
||||
</li>
|
||||
|
||||
<div class="sheet-box color-bg-archetype">
|
||||
<ul class="item-list alternate-list">
|
||||
{{#each sorts as |niveau key|}}
|
||||
<li class="item flexrow list-item items-title-bg">
|
||||
<span class="item-name-label-header item-field-label-long2-img">
|
||||
<h3><label class="items-title-text">Nom du sort</label></h3>
|
||||
<h4><label class="items-title-text">Niveau {{key}} {{niveau.nomNiveau}}</label></h4>
|
||||
</span>
|
||||
<span class="item-field-label-medium">
|
||||
<label class="short-label">Niveau</label>
|
||||
</span>
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
{{#if @root.isGM}}
|
||||
<a class="item-control item-add" data-type="sort" data-sort-competence={{magie.name}}
|
||||
@@ -535,16 +532,12 @@
|
||||
{{/if}}
|
||||
</div>
|
||||
</li>
|
||||
{{#each sorts as |sort key|}}
|
||||
{{#each niveau.sorts as |sort key|}}
|
||||
<li class="item flexrow " data-item-id="{{sort._id}}" data-item-type="sort">
|
||||
<img class="item-name-img" src="{{sort.img}}" />
|
||||
<span class="item-field-label-long2 roll-style"><a class="roll-sort">{{sort.name}}</a></span>
|
||||
<span class="item-field-label-medium">{{upperFirst sort.system.niveau}}</span>
|
||||
|
||||
{{#if (eq system.competence "Magie du Clan")}}
|
||||
<span class="item-field-label-medium">{{upperFirst sort.system.souffle}}</span>*
|
||||
{{/if}}
|
||||
|
||||
<div class="item-filler"> </div>
|
||||
<div class="item-controls item-controls-fixed">
|
||||
<a class="item-control item-edit" title="Editer l'item"><i class="fas fa-edit"></i></a>
|
||||
@@ -552,13 +545,13 @@
|
||||
</div>
|
||||
</li>
|
||||
{{/each}}
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
{{/each}}
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
{{!-- Equipement Tab --}}
|
||||
<div class="tab equipement" data-group="primary" data-tab="equipement">
|
||||
|
||||
|
||||
@@ -41,19 +41,58 @@
|
||||
{{#if pouvoir}}
|
||||
<li>Pouvoir : {{pouvoir.name}}</li>
|
||||
<li>Effet : {{pouvoir.system.effet}}</li>
|
||||
<li>Points d'usage consommés : {{pouvoirPointsUsage}}</li>
|
||||
{{#if (ne pouvoir.system.duree "")}}
|
||||
<li>Durée : {{pouvoir.system.duree}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.portee "")}}
|
||||
<li>Portée : {{pouvoir.system.portee}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.resistance "")}}
|
||||
<li>Résistance : {{pouvoir.system.resistance}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.resistanceautre "")}}
|
||||
<li>Résistance autre : {{pouvoir.system.resistanceautre}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.zoneeffet "")}}
|
||||
<li>Zone d'effet : {{pouvoir.system.zoneeffet}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.cibles "")}}
|
||||
<li>Cibles : {{pouvoir.system.cibles}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne pouvoir.system.virulence "")}}
|
||||
<li>Virulence : {{pouvoir.system.virulence}}</li>
|
||||
{{/if}}
|
||||
<li>Points d'usage consommés : {{pouvoirPointsUsage}}</li>
|
||||
{{/if}}
|
||||
|
||||
{{#if sort}}
|
||||
<li>Sort : {{sort.name}}</li>
|
||||
{{#if (ne sort.system.resistance "")}}
|
||||
<li>Résistance : {{sort.system.resistance}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne sort.system.concentration "")}}
|
||||
<li>Concentration : {{sort.system.concentration}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne sort.system.duree "")}}
|
||||
<li>Durée : {{sort.system.duree}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne sort.system.portee "")}}
|
||||
<li>Portée : {{sort.system.portee}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne sort.system.ingredients "")}}
|
||||
<li>Ingrédients : {{sort.system.ingredients}}</li>
|
||||
{{/if}}
|
||||
{{#if (ne sort.system.coutactivation "")}}
|
||||
<li>Coût d'activation : {{sort.system.coutactivation}}</li>
|
||||
{{/if}}
|
||||
{{#if spendEsprit}}
|
||||
<li>Points d'Esprit dépensé : 1</li>
|
||||
<li>Points d'Esprit dépensé : 1</li>
|
||||
{{else}}
|
||||
<li>Cout en Points d'âmes : {{sortPointsAme}}</li>
|
||||
{{#if (eq sort.system.competence "Magie du Clan")}}
|
||||
<li>Souffle : {{sort.system.souffle}}</li>
|
||||
<li>Cout en PV : 2</li>
|
||||
{{/if}}
|
||||
<li>Cout en Points d'âmes : {{sortPointsAme}}</li>
|
||||
{{#if (eq sort.system.competence "Magie du Clan")}}
|
||||
<li>Souffle : {{sort.system.souffle}}</li>
|
||||
<li>Cout en PV : 2</li>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
<ul class="item-list alternate-list">
|
||||
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Catégorie </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||
@@ -22,8 +22,8 @@
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Profil </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text"
|
||||
name="system.profil" value="{{system.profil}}" data-dtype="string">
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.profil"
|
||||
value="{{system.profil}}" data-dtype="string">
|
||||
{{selectOptions config.competenceProfil selected=system.profil labelAttr="name"}}
|
||||
</select>
|
||||
</li>
|
||||
@@ -31,7 +31,7 @@
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Compétence de Prédilection ? </label>
|
||||
<input type="checkbox" class="padd-right status-small-label color-class-common item-field-label-short"
|
||||
name="system.predilection" {{checked system.predilection}}/>
|
||||
name="system.predilection" {{checked system.predilection}} />
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
@@ -40,6 +40,16 @@
|
||||
name="system.niveau" value="{{system.niveau}}" data-dtype="Number" />
|
||||
</li>
|
||||
|
||||
{{#if (eq system.profil "magie")}}
|
||||
{{#each system.nomniveau as |niveau key|}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Nom du Niveau {{key}}</label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common item-field-label-long"
|
||||
name="system.nomniveau.{{key}}" value="{{niveau}}" data-dtype="String" />
|
||||
</li>
|
||||
{{/each}}
|
||||
{{/if}}
|
||||
|
||||
<li class="flexrow item">
|
||||
<h3>Spécialités</h3>
|
||||
</li>
|
||||
|
||||
@@ -38,21 +38,38 @@
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Niveau/Rang </label>
|
||||
<label class="generic-label item-field-label-long2">Niveau</label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.niveau"
|
||||
value="{{system.niveau}}" data-dtype="string">
|
||||
{{selectOptions config.listNiveauSort selected=system.niveau}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2"
|
||||
data-tooltip="A renseigner si le SD n'est pas celui du niveau par défaut">SD spécial</label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common item-field-label-short"
|
||||
name="system.sdspecial" value="{{system.sdspecial}}" data-dtype="String" />
|
||||
</li>
|
||||
|
||||
<!--
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Rang</label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.rang"
|
||||
value="{{system.rang}}" data-dtype="string">
|
||||
{{selectOptions config.listRangSort selected=system.rang}}
|
||||
</select>
|
||||
</li>
|
||||
-->
|
||||
|
||||
{{#if (eq system.competence "Magie du Clan")}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Souffle </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.souffle"
|
||||
value="{{system.souffle}}" data-dtype="string">
|
||||
{{selectOptions config.soufflesMagieDuClan selected=system.souffle}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long2">Souffle </label>
|
||||
<select class="status-small-label color-class-common item-field-label-long" type="text" name="system.souffle"
|
||||
value="{{system.souffle}}" data-dtype="string">
|
||||
{{selectOptions config.soufflesMagieDuClan selected=system.souffle}}
|
||||
</select>
|
||||
</li>
|
||||
{{/if}}
|
||||
|
||||
<li class="flexrow item">
|
||||
|
||||
Reference in New Issue
Block a user