diff --git a/source/style/Character-sheet.less b/source/style/Character-sheet.less
index dd4dda2..68c3dcc 100644
--- a/source/style/Character-sheet.less
+++ b/source/style/Character-sheet.less
@@ -11,38 +11,41 @@
.flexcolumn {
flex-wrap: wrap;
+ flex-direction: column;
}
.flexcolumn-1 {
- flex: 100%;
+ flex-basis: 100%;
flex-wrap: wrap;
}
.flexcolumn-2 {
- flex: 50%;
+ flex-basis: 50%;
flex-wrap: wrap;
}
.flexcolumn-3 {
- flex: 33%;
+ flex-basis: 33%;
flex-wrap: wrap;
}
.flexcolumn-4 {
- flex: 25%;
+ flex-basis: 25%;
flex-wrap: wrap;
}
.flexcolumn-5 {
- flex: 20%;
+ flex-basis: 20%;
flex-wrap: wrap;
}
.flexpart {
gap: 0;
padding: 0;
- margin: 5px;
+ margin: 2px;
background-color: beige;
+ border-collapse: separate;
+ border-radius: 10px;
border: 2px solid black;
}
@@ -65,10 +68,15 @@
h3 {
padding: 0.5rem 0.5rem 0.5rem 0.5rem;
+ margin-top: 0.5rem;
+ margin-bottom: 0;
text-align: left;
font-weight: bold;
- background-color: dimgray;
- color: white;
+ background-color: #eeede0;
+ color: black;
+ border-collapse: separate;
+ border: 2px solid black;
+ border-radius: 10px;
}
.profile-img {
@@ -250,7 +258,8 @@
padding: 1px;
//align-items: stretch;
- input {
+ input,
+ .max-value {
flex: 0 0 2rem;
text-align: center;
height: 100%;
diff --git a/templates/sheets/character/base_values.hbs b/templates/sheets/character/base_values.hbs
index 6ac423c..9aa2fd6 100644
--- a/templates/sheets/character/base_values.hbs
+++ b/templates/sheets/character/base_values.hbs
@@ -67,6 +67,12 @@
{{localize "midgard5.movementRange"}} |
|
+
+ | {{localize "midgard5.actor-lp-short"}} |
+ |
+ {{localize "midgard5.actor-ap-short"}} |
+ |
+
| {{localize "midgard5.brawl"}} |
{{data.calc.stats.brawl.value}} |
diff --git a/templates/sheets/character/combat.hbs b/templates/sheets/character/combat.hbs
index a6705fb..fc2447d 100644
--- a/templates/sheets/character/combat.hbs
+++ b/templates/sheets/character/combat.hbs
@@ -114,33 +114,7 @@
-
-
-
-
-
-
- | {{localize "midgard5.movementRange"}} |
- {{data.calc.stats.movement.value}} |
- |
- |
-
- {{localize "midgard5.defense"}} |
- {{data.calc.stats.defense.value}} |
- {{localize "midgard5.defenseBonus"}} |
- {{data.calc.stats.defenseBonus.value}} |
-
-
- | {{localize "midgard5.damageBonus"}} |
- {{data.calc.stats.damageBonus.value}} |
- {{localize "midgard5.attackBonus"}} |
- {{data.calc.stats.attackBonus.value}} |
-
-
-
-
-
-
+
diff --git a/templates/sheets/character/gear.hbs b/templates/sheets/character/gear.hbs
index d5ef84b..c5c0d24 100644
--- a/templates/sheets/character/gear.hbs
+++ b/templates/sheets/character/gear.hbs
@@ -1,6 +1,6 @@
+{{localize "midgard5.wealthAndContainers"}}
@@ -230,6 +212,53 @@
+
+
+
+
+
+
+
+ {{#each data.calc.gear.containers as |item itemId|}}
+
+ |
+ {{item.label}}
+ |
+
+ {{#unless (or (eq item.value 0) (eq item.currency ""))}}
+ {{item.value}} {{localize (m5concat "midgard5.currency-" item.currency)}}
+ {{/unless}}
+ |
+
+ {{#unless (or (eq item.weight "") (eq item.equipped?))}}
+ {{item.weight}} kg
+ {{/unless}}
+ |
+
+ {{#if item.equipped}}
+
+ {{else}}
+
+ {{/if}}
+ |
+ {{#if item.rollExist}}{{/if}} |
+ |
+
+ {{/each}}
+
+
+
+
+
@@ -288,7 +317,8 @@
-
+
@@ -302,6 +332,7 @@
{{#each data.calc.gear.weapons as |item itemId|}}
+ {{#if (or ../data.info.showAllItems (eq item.containerId ""))}}
| {{item.label}} |
@@ -323,6 +354,7 @@
|
|
+ {{/if}}
{{/each}}
@@ -344,6 +376,7 @@
{{#each data.calc.gear.defensiveWeapons as |item itemId|}}
+ {{#if (or ../data.info.showAllItems (eq item.containerId ""))}}
| {{item.label}} |
@@ -365,6 +398,7 @@
|
|
+ {{/if}}
{{/each}}
@@ -386,6 +420,7 @@
{{#each data.calc.gear.armor as |item itemId|}}
+ {{#if (or ../data.info.showAllItems (eq item.containerId ""))}}
| {{item.label}} |
@@ -407,36 +442,10 @@
|
|
+ {{/if}}
{{/each}}
-
-
\ No newline at end of file
diff --git a/templates/sheets/character/main.hbs b/templates/sheets/character/main.hbs
index 7ca7632..1039fc3 100644
--- a/templates/sheets/character/main.hbs
+++ b/templates/sheets/character/main.hbs
@@ -89,7 +89,7 @@
{{/if}}
{{/times}}
-
+ {{data.lp.max}}
@@ -105,7 +105,7 @@
{{/if}}
{{/times}}
-
+ {{data.ap.max}}