diff --git a/css/fvtt-lethal-fantasy.css b/css/fvtt-lethal-fantasy.css index 0d8f2a6..28e3b2c 100644 --- a/css/fvtt-lethal-fantasy.css +++ b/css/fvtt-lethal-fantasy.css @@ -853,36 +853,36 @@ i.lethalfantasy { flex: none; width: 3rem; } -.lethalfantasy .monster-main .monster-resists { +.lethalfantasy .monster-main .monster-skills { display: flex; flex-direction: column; gap: 4px; flex: 1; } -.lethalfantasy .monster-main .monster-resists .monster-resist { +.lethalfantasy .monster-main .monster-skills .monster-skill { display: flex; align-items: center; margin-right: 0.5rem; } -.lethalfantasy .monster-main .monster-resists .monster-resist .rollable:hover, -.lethalfantasy .monster-main .monster-resists .monster-resist .rollable:focus { +.lethalfantasy .monster-main .monster-skills .monster-skill .rollable:hover, +.lethalfantasy .monster-main .monster-skills .monster-skill .rollable:focus { text-shadow: 0 0 8px var(--color-shadow-primary); cursor: pointer; } -.lethalfantasy .monster-main .monster-resists .monster-resist input { +.lethalfantasy .monster-main .monster-skills .monster-skill input { min-width: 2.2rem; max-width: 2.5rem; } -.lethalfantasy .monster-main .monster-resists .monster-resist .name { +.lethalfantasy .monster-main .monster-skills .monster-skill .name { flex: 1; min-width: 3.2rem; margin-left: 4px; } -.lethalfantasy .monster-main .monster-resists .monster-resist .form-group { +.lethalfantasy .monster-main .monster-skills .monster-skill .form-group { flex: 1; padding-left: 4px; } -.lethalfantasy .monster-main .monster-resists .monster-resist .form-group .form-fields { +.lethalfantasy .monster-main .monster-skills .monster-skill .form-group .form-fields { flex: none; width: 2.5rem; } diff --git a/module/applications/sheets/monster-sheet.mjs b/module/applications/sheets/monster-sheet.mjs index ff324fb..b14dea4 100644 --- a/module/applications/sheets/monster-sheet.mjs +++ b/module/applications/sheets/monster-sheet.mjs @@ -175,7 +175,7 @@ export default class LethalFantasyMonsterSheet extends LethalFantasyActorSheet { rollTarget = foundry.utils.duplicate(this.document.system.attacks[rollKey]) rollTarget.rollKey = rollKey break - case "resist": + case "monster-skill": rollTarget = foundry.utils.duplicate(this.document.system.resists[rollKey]) rollTarget.rollKey = rollKey break diff --git a/module/config/system.mjs b/module/config/system.mjs index 793012b..6ac0005 100644 --- a/module/config/system.mjs +++ b/module/config/system.mjs @@ -116,7 +116,7 @@ export const INITIATIVE_DICE_CHOICES_PER_CLASS = { { "name": "Aware and know exactly where the enemy is (1D3)", "value": "1D3"} ], "cleric": [ - { "name": "Asleep or totally distracted (1D2)", "value": "1D12" }, + { "name": "Asleep or totally distracted (1D12)", "value": "1D12" }, { "name": "Awake but unsuspecting (1D10)", "value": "1D10" }, { "name": "Declared Ready on Alert (1D8)", "value": "1D8" }, { "name": "Aware of the enemy, can hear them but not see (1D6)", "value": "1D6" }, diff --git a/module/documents/roll.mjs b/module/documents/roll.mjs index af0a717..3b93faa 100644 --- a/module/documents/roll.mjs +++ b/module/documents/roll.mjs @@ -122,11 +122,11 @@ export default class LethalFantasyRoll extends Roll { let hasChangeDice = false let hasD30 = false let hasFavor = false - let hasMaxValue = true - let hasGrantedDice = false + let hasMaxValue = true + let hasGrantedDice = false if (options.rollType === "challenge" || options.rollType === "save") { - options.rollName = game.i18n.localize( `LETHALFANTASY.Label.${options.rollTarget.rollKey}` ) + options.rollName = game.i18n.localize(`LETHALFANTASY.Label.${options.rollTarget.rollKey}`) hasD30 = options.rollType === "save" if (options.rollTarget.rollKey === "dying") { dice = options.rollTarget.value @@ -168,11 +168,14 @@ export default class LethalFantasyRoll extends Roll { options.rollTarget.charModifier = 0 } - } else if (options.rollType === "resist") { - dice = "1D20" - maxValue = 20 + } else if (options.rollType === "monster-skill") { + options.rollName = game.i18n.localize(`LETHALFANTASY.Label.${options.rollTarget.rollKey}`) + dice = "1D100" + baseFormula = "D100" + maxValue = 100 + hasModifier = true hasFavor = true - options.rollName = options.rollTarget.rollKey + hasChangeDice = false } else if (options.rollType === "skill") { options.rollName = options.rollTarget.name @@ -336,7 +339,7 @@ export default class LethalFantasyRoll extends Roll { if (fullModifier === 0) { modifierFormula = "0" } else { - if (options.rollType === "skill") { + if (options.rollType === "skill" || options.rollType === "monster-skill") { modifierFormula = `${fullModifier}` } else { let modAbs = Math.abs(fullModifier) @@ -452,7 +455,7 @@ export default class LethalFantasyRoll extends Roll { let r = await new Roll(baseFormula).evaluate() if (game?.dice3d) { await game.dice3d.showForRoll(r, game.user, true) - } + } diceResult = r.dice[0].results[0].result diceResults.push({ dice: `${singleDice}-1`, value: diceResult - 1 }) diceSum += (diceResult - 1) @@ -461,14 +464,14 @@ export default class LethalFantasyRoll extends Roll { } } - if ( hasGrantedDice) { - let grantedRoll = new Roll(options.rollTarget.grantedDice) - await grantedRoll.evaluate() - if (game?.dice3d) { - await game.dice3d.showForRoll(grantedRoll, game.user, true) - } - diceResults.push({ dice: `${options.rollTarget.grantedDice}`, value: grantedRoll.total }) - rollTotal += grantedRoll.total + if (hasGrantedDice) { + let grantedRoll = new Roll(options.rollTarget.grantedDice) + await grantedRoll.evaluate() + if (game?.dice3d) { + await game.dice3d.showForRoll(grantedRoll, game.user, true) + } + diceResults.push({ dice: `${options.rollTarget.grantedDice}`, value: grantedRoll.total }) + rollTotal += grantedRoll.total } if (fullModifier !== 0) { @@ -787,6 +790,7 @@ export default class LethalFantasyRoll extends Roll { return `${game.i18n.localize("LETHALFANTASY.Label.titleChallenge")}` case "save": return `${game.i18n.localize("LETHALFANTASY.Label.titleSave")}` + case "monster-skill": case "skill": return `${game.i18n.localize("LETHALFANTASY.Label.titleSkill")}` case "weapon-attack": diff --git a/packs-system/lf-equipment/000100.log b/packs-system/lf-equipment/000104.log similarity index 100% rename from packs-system/lf-equipment/000100.log rename to packs-system/lf-equipment/000104.log diff --git a/packs-system/lf-equipment/CURRENT b/packs-system/lf-equipment/CURRENT index 95395b2..e333c89 100644 --- a/packs-system/lf-equipment/CURRENT +++ b/packs-system/lf-equipment/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs-system/lf-equipment/LOG b/packs-system/lf-equipment/LOG index 2cdfd1c..a365a2c 100644 --- a/packs-system/lf-equipment/LOG +++ b/packs-system/lf-equipment/LOG @@ -1,8 +1,8 @@ -2025/01/21-08:05:19.262536 7f6e75ffb6c0 Recovering log #96 -2025/01/21-08:05:19.272917 7f6e75ffb6c0 Delete type=3 #94 -2025/01/21-08:05:19.273013 7f6e75ffb6c0 Delete type=0 #96 -2025/01/21-08:09:47.062020 7f6e753ff6c0 Level-0 table #101: started -2025/01/21-08:09:47.062050 7f6e753ff6c0 Level-0 table #101: 0 bytes OK -2025/01/21-08:09:47.068775 7f6e753ff6c0 Delete type=0 #99 -2025/01/21-08:09:47.081051 7f6e753ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) -2025/01/21-08:09:47.081085 7f6e753ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) +2025/01/22-08:50:47.531510 7f6e76ffd6c0 Recovering log #100 +2025/01/22-08:50:47.542333 7f6e76ffd6c0 Delete type=3 #98 +2025/01/22-08:50:47.542398 7f6e76ffd6c0 Delete type=0 #100 +2025/01/22-08:58:23.847420 7f6e753ff6c0 Level-0 table #105: started +2025/01/22-08:58:23.847465 7f6e753ff6c0 Level-0 table #105: 0 bytes OK +2025/01/22-08:58:23.854185 7f6e753ff6c0 Delete type=0 #103 +2025/01/22-08:58:23.873021 7f6e753ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) +2025/01/22-08:58:23.873071 7f6e753ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/LOG.old b/packs-system/lf-equipment/LOG.old index b9fd83e..2cdfd1c 100644 --- a/packs-system/lf-equipment/LOG.old +++ b/packs-system/lf-equipment/LOG.old @@ -1,8 +1,8 @@ -2025/01/20-18:34:52.996209 7f6e76ffd6c0 Recovering log #92 -2025/01/20-18:34:53.044133 7f6e76ffd6c0 Delete type=3 #90 -2025/01/20-18:34:53.044195 7f6e76ffd6c0 Delete type=0 #92 -2025/01/20-18:52:31.113580 7f6e753ff6c0 Level-0 table #97: started -2025/01/20-18:52:31.113605 7f6e753ff6c0 Level-0 table #97: 0 bytes OK -2025/01/20-18:52:31.119961 7f6e753ff6c0 Delete type=0 #95 -2025/01/20-18:52:31.120109 7f6e753ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) -2025/01/20-18:52:31.120139 7f6e753ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) +2025/01/21-08:05:19.262536 7f6e75ffb6c0 Recovering log #96 +2025/01/21-08:05:19.272917 7f6e75ffb6c0 Delete type=3 #94 +2025/01/21-08:05:19.273013 7f6e75ffb6c0 Delete type=0 #96 +2025/01/21-08:09:47.062020 7f6e753ff6c0 Level-0 table #101: started +2025/01/21-08:09:47.062050 7f6e753ff6c0 Level-0 table #101: 0 bytes OK +2025/01/21-08:09:47.068775 7f6e753ff6c0 Delete type=0 #99 +2025/01/21-08:09:47.081051 7f6e753ff6c0 Manual compaction at level-0 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) +2025/01/21-08:09:47.081085 7f6e753ff6c0 Manual compaction at level-1 from '!folders!ATr9wZhg5uTVTksM' @ 72057594037927935 : 1 .. '!items!zFrygJ2TnrxchBai' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-equipment/MANIFEST-000098 b/packs-system/lf-equipment/MANIFEST-000098 deleted file mode 100644 index 27cd9be..0000000 Binary files a/packs-system/lf-equipment/MANIFEST-000098 and /dev/null differ diff --git a/packs-system/lf-equipment/MANIFEST-000102 b/packs-system/lf-equipment/MANIFEST-000102 new file mode 100644 index 0000000..200369a Binary files /dev/null and b/packs-system/lf-equipment/MANIFEST-000102 differ diff --git a/packs-system/lf-gifts/000100.log b/packs-system/lf-gifts/000104.log similarity index 100% rename from packs-system/lf-gifts/000100.log rename to packs-system/lf-gifts/000104.log diff --git a/packs-system/lf-gifts/CURRENT b/packs-system/lf-gifts/CURRENT index 95395b2..e333c89 100644 --- a/packs-system/lf-gifts/CURRENT +++ b/packs-system/lf-gifts/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs-system/lf-gifts/LOG b/packs-system/lf-gifts/LOG index 7a2bb74..0f3db75 100644 --- a/packs-system/lf-gifts/LOG +++ b/packs-system/lf-gifts/LOG @@ -1,8 +1,8 @@ -2025/01/21-08:05:19.275701 7f6e777fe6c0 Recovering log #96 -2025/01/21-08:05:19.285578 7f6e777fe6c0 Delete type=3 #94 -2025/01/21-08:05:19.285635 7f6e777fe6c0 Delete type=0 #96 -2025/01/21-08:09:47.055817 7f6e753ff6c0 Level-0 table #101: started -2025/01/21-08:09:47.055868 7f6e753ff6c0 Level-0 table #101: 0 bytes OK -2025/01/21-08:09:47.061904 7f6e753ff6c0 Delete type=0 #99 -2025/01/21-08:09:47.081038 7f6e753ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/01/21-08:09:47.081078 7f6e753ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/01/22-08:50:47.546037 7f6e767fc6c0 Recovering log #100 +2025/01/22-08:50:47.555474 7f6e767fc6c0 Delete type=3 #98 +2025/01/22-08:50:47.555529 7f6e767fc6c0 Delete type=0 #100 +2025/01/22-08:58:23.860632 7f6e753ff6c0 Level-0 table #105: started +2025/01/22-08:58:23.860663 7f6e753ff6c0 Level-0 table #105: 0 bytes OK +2025/01/22-08:58:23.866752 7f6e753ff6c0 Delete type=0 #103 +2025/01/22-08:58:23.873055 7f6e753ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/01/22-08:58:23.873089 7f6e753ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-gifts/LOG.old b/packs-system/lf-gifts/LOG.old index 4151ccd..7a2bb74 100644 --- a/packs-system/lf-gifts/LOG.old +++ b/packs-system/lf-gifts/LOG.old @@ -1,8 +1,8 @@ -2025/01/20-18:34:53.050237 7f6e777fe6c0 Recovering log #92 -2025/01/20-18:34:53.090154 7f6e777fe6c0 Delete type=3 #90 -2025/01/20-18:34:53.090233 7f6e777fe6c0 Delete type=0 #92 -2025/01/20-18:52:31.100235 7f6e753ff6c0 Level-0 table #97: started -2025/01/20-18:52:31.100273 7f6e753ff6c0 Level-0 table #97: 0 bytes OK -2025/01/20-18:52:31.106232 7f6e753ff6c0 Delete type=0 #95 -2025/01/20-18:52:31.120084 7f6e753ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) -2025/01/20-18:52:31.120132 7f6e753ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/01/21-08:05:19.275701 7f6e777fe6c0 Recovering log #96 +2025/01/21-08:05:19.285578 7f6e777fe6c0 Delete type=3 #94 +2025/01/21-08:05:19.285635 7f6e777fe6c0 Delete type=0 #96 +2025/01/21-08:09:47.055817 7f6e753ff6c0 Level-0 table #101: started +2025/01/21-08:09:47.055868 7f6e753ff6c0 Level-0 table #101: 0 bytes OK +2025/01/21-08:09:47.061904 7f6e753ff6c0 Delete type=0 #99 +2025/01/21-08:09:47.081038 7f6e753ff6c0 Manual compaction at level-0 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) +2025/01/21-08:09:47.081078 7f6e753ff6c0 Manual compaction at level-1 from '!folders!yPWGvxHJbDNHVSnY' @ 72057594037927935 : 1 .. '!items!zjvGljrLk5SshC9D' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-gifts/MANIFEST-000098 b/packs-system/lf-gifts/MANIFEST-000098 deleted file mode 100644 index f5adb9f..0000000 Binary files a/packs-system/lf-gifts/MANIFEST-000098 and /dev/null differ diff --git a/packs-system/lf-gifts/MANIFEST-000102 b/packs-system/lf-gifts/MANIFEST-000102 new file mode 100644 index 0000000..7b99c2e Binary files /dev/null and b/packs-system/lf-gifts/MANIFEST-000102 differ diff --git a/packs-system/lf-skills/000100.log b/packs-system/lf-skills/000104.log similarity index 100% rename from packs-system/lf-skills/000100.log rename to packs-system/lf-skills/000104.log diff --git a/packs-system/lf-skills/CURRENT b/packs-system/lf-skills/CURRENT index 95395b2..e333c89 100644 --- a/packs-system/lf-skills/CURRENT +++ b/packs-system/lf-skills/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs-system/lf-skills/LOG b/packs-system/lf-skills/LOG index 250114c..7570559 100644 --- a/packs-system/lf-skills/LOG +++ b/packs-system/lf-skills/LOG @@ -1,8 +1,8 @@ -2025/01/21-08:05:19.250239 7f6e767fc6c0 Recovering log #96 -2025/01/21-08:05:19.259468 7f6e767fc6c0 Delete type=3 #94 -2025/01/21-08:05:19.259520 7f6e767fc6c0 Delete type=0 #96 -2025/01/21-08:09:47.068881 7f6e753ff6c0 Level-0 table #101: started -2025/01/21-08:09:47.068908 7f6e753ff6c0 Level-0 table #101: 0 bytes OK -2025/01/21-08:09:47.074776 7f6e753ff6c0 Delete type=0 #99 -2025/01/21-08:09:47.081061 7f6e753ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/01/21-08:09:47.081100 7f6e753ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/01/22-08:50:47.517175 7f6e777fe6c0 Recovering log #100 +2025/01/22-08:50:47.527678 7f6e777fe6c0 Delete type=3 #98 +2025/01/22-08:50:47.527739 7f6e777fe6c0 Delete type=0 #100 +2025/01/22-08:58:23.866935 7f6e753ff6c0 Level-0 table #105: started +2025/01/22-08:58:23.866963 7f6e753ff6c0 Level-0 table #105: 0 bytes OK +2025/01/22-08:58:23.872897 7f6e753ff6c0 Delete type=0 #103 +2025/01/22-08:58:23.873064 7f6e753ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/01/22-08:58:23.873097 7f6e753ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-skills/LOG.old b/packs-system/lf-skills/LOG.old index 3512f14..250114c 100644 --- a/packs-system/lf-skills/LOG.old +++ b/packs-system/lf-skills/LOG.old @@ -1,8 +1,8 @@ -2025/01/20-18:34:52.945940 7f6e767fc6c0 Recovering log #92 -2025/01/20-18:34:52.991196 7f6e767fc6c0 Delete type=3 #90 -2025/01/20-18:34:52.991251 7f6e767fc6c0 Delete type=0 #92 -2025/01/20-18:52:31.093998 7f6e753ff6c0 Level-0 table #97: started -2025/01/20-18:52:31.094052 7f6e753ff6c0 Level-0 table #97: 0 bytes OK -2025/01/20-18:52:31.100089 7f6e753ff6c0 Delete type=0 #95 -2025/01/20-18:52:31.120068 7f6e753ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) -2025/01/20-18:52:31.120116 7f6e753ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/01/21-08:05:19.250239 7f6e767fc6c0 Recovering log #96 +2025/01/21-08:05:19.259468 7f6e767fc6c0 Delete type=3 #94 +2025/01/21-08:05:19.259520 7f6e767fc6c0 Delete type=0 #96 +2025/01/21-08:09:47.068881 7f6e753ff6c0 Level-0 table #101: started +2025/01/21-08:09:47.068908 7f6e753ff6c0 Level-0 table #101: 0 bytes OK +2025/01/21-08:09:47.074776 7f6e753ff6c0 Delete type=0 #99 +2025/01/21-08:09:47.081061 7f6e753ff6c0 Manual compaction at level-0 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) +2025/01/21-08:09:47.081100 7f6e753ff6c0 Manual compaction at level-1 from '!folders!7j8H7DbmBb9Uza2X' @ 72057594037927935 : 1 .. '!items!zt8s7564ep1La4XQ' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-skills/MANIFEST-000098 b/packs-system/lf-skills/MANIFEST-000098 deleted file mode 100644 index 4bd44f1..0000000 Binary files a/packs-system/lf-skills/MANIFEST-000098 and /dev/null differ diff --git a/packs-system/lf-skills/MANIFEST-000102 b/packs-system/lf-skills/MANIFEST-000102 new file mode 100644 index 0000000..0b915f1 Binary files /dev/null and b/packs-system/lf-skills/MANIFEST-000102 differ diff --git a/packs-system/lf-vulnerabilities/000100.log b/packs-system/lf-vulnerabilities/000104.log similarity index 100% rename from packs-system/lf-vulnerabilities/000100.log rename to packs-system/lf-vulnerabilities/000104.log diff --git a/packs-system/lf-vulnerabilities/CURRENT b/packs-system/lf-vulnerabilities/CURRENT index 95395b2..e333c89 100644 --- a/packs-system/lf-vulnerabilities/CURRENT +++ b/packs-system/lf-vulnerabilities/CURRENT @@ -1 +1 @@ -MANIFEST-000098 +MANIFEST-000102 diff --git a/packs-system/lf-vulnerabilities/LOG b/packs-system/lf-vulnerabilities/LOG index d2186d0..fdaff22 100644 --- a/packs-system/lf-vulnerabilities/LOG +++ b/packs-system/lf-vulnerabilities/LOG @@ -1,8 +1,8 @@ -2025/01/21-08:05:19.288005 7f6e76ffd6c0 Recovering log #96 -2025/01/21-08:05:19.298022 7f6e76ffd6c0 Delete type=3 #94 -2025/01/21-08:05:19.298088 7f6e76ffd6c0 Delete type=0 #96 -2025/01/21-08:09:47.074914 7f6e753ff6c0 Level-0 table #101: started -2025/01/21-08:09:47.074948 7f6e753ff6c0 Level-0 table #101: 0 bytes OK -2025/01/21-08:09:47.080933 7f6e753ff6c0 Delete type=0 #99 -2025/01/21-08:09:47.081071 7f6e753ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/01/21-08:09:47.081093 7f6e753ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/01/22-08:50:47.558438 7f6e75ffb6c0 Recovering log #100 +2025/01/22-08:50:47.568545 7f6e75ffb6c0 Delete type=3 #98 +2025/01/22-08:50:47.568612 7f6e75ffb6c0 Delete type=0 #100 +2025/01/22-08:58:23.854343 7f6e753ff6c0 Level-0 table #105: started +2025/01/22-08:58:23.854385 7f6e753ff6c0 Level-0 table #105: 0 bytes OK +2025/01/22-08:58:23.860490 7f6e753ff6c0 Delete type=0 #103 +2025/01/22-08:58:23.873043 7f6e753ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/01/22-08:58:23.873080 7f6e753ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-vulnerabilities/LOG.old b/packs-system/lf-vulnerabilities/LOG.old index beacb59..d2186d0 100644 --- a/packs-system/lf-vulnerabilities/LOG.old +++ b/packs-system/lf-vulnerabilities/LOG.old @@ -1,8 +1,8 @@ -2025/01/20-18:34:53.094862 7f6e75ffb6c0 Recovering log #92 -2025/01/20-18:34:53.142930 7f6e75ffb6c0 Delete type=3 #90 -2025/01/20-18:34:53.142986 7f6e75ffb6c0 Delete type=0 #92 -2025/01/20-18:52:31.106363 7f6e753ff6c0 Level-0 table #97: started -2025/01/20-18:52:31.106394 7f6e753ff6c0 Level-0 table #97: 0 bytes OK -2025/01/20-18:52:31.113466 7f6e753ff6c0 Delete type=0 #95 -2025/01/20-18:52:31.120098 7f6e753ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) -2025/01/20-18:52:31.120124 7f6e753ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/01/21-08:05:19.288005 7f6e76ffd6c0 Recovering log #96 +2025/01/21-08:05:19.298022 7f6e76ffd6c0 Delete type=3 #94 +2025/01/21-08:05:19.298088 7f6e76ffd6c0 Delete type=0 #96 +2025/01/21-08:09:47.074914 7f6e753ff6c0 Level-0 table #101: started +2025/01/21-08:09:47.074948 7f6e753ff6c0 Level-0 table #101: 0 bytes OK +2025/01/21-08:09:47.080933 7f6e753ff6c0 Delete type=0 #99 +2025/01/21-08:09:47.081071 7f6e753ff6c0 Manual compaction at level-0 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) +2025/01/21-08:09:47.081093 7f6e753ff6c0 Manual compaction at level-1 from '!folders!mnO9OzE7BEE2KDfh' @ 72057594037927935 : 1 .. '!items!zkK6ixtCsCw3RH9X' @ 0 : 0; will stop at (end) diff --git a/packs-system/lf-vulnerabilities/MANIFEST-000098 b/packs-system/lf-vulnerabilities/MANIFEST-000102 similarity index 73% rename from packs-system/lf-vulnerabilities/MANIFEST-000098 rename to packs-system/lf-vulnerabilities/MANIFEST-000102 index b43c8f5..ce3ba3c 100644 Binary files a/packs-system/lf-vulnerabilities/MANIFEST-000098 and b/packs-system/lf-vulnerabilities/MANIFEST-000102 differ diff --git a/styles/monster.less b/styles/monster.less index 2f03282..9f8418c 100644 --- a/styles/monster.less +++ b/styles/monster.less @@ -110,13 +110,13 @@ } } - .monster-resists { + .monster-skills { display: flex; flex-direction: column; gap: 4px; flex: 1; - .monster-resist { + .monster-skill { display: flex; align-items: center; margin-right: 0.5rem; diff --git a/system.json b/system.json index 7a410c4..f00df9b 100644 --- a/system.json +++ b/system.json @@ -6,7 +6,7 @@ "download": "#{DOWNLOAD}#", "url": "#{URL}#", "license": "LICENSE", - "version": "12.0.25", + "version": "12.0.26", "authors": [ { "name": "Uberwald", diff --git a/templates/character-equipment.hbs b/templates/character-equipment.hbs index 94b0866..20a6e76 100644 --- a/templates/character-equipment.hbs +++ b/templates/character-equipment.hbs @@ -3,7 +3,7 @@