Updated Got to 1.25.5
made spells display correct spell information
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
<!-- Left section: Character icon, currency, and small containers -->
|
||||
<div class="equipment-left">
|
||||
<div class="char-icon-section">
|
||||
<img src="token_bebe.png" alt="Charakter" class="char-icon">
|
||||
<img src="shared/images/token_bebe.png" alt="Charakter" class="char-icon">
|
||||
</div>
|
||||
<table class="currency-table">
|
||||
<tr>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<div class="flex main-content">
|
||||
<!-- Left spell table -->
|
||||
<div class="left-section">
|
||||
<!-- BLOCK: spells_left, TYPE: spells, MAX: 26 -->
|
||||
<!-- BLOCK: spells_left, TYPE: spells, MAX: 15 -->
|
||||
<table class="spells-table">
|
||||
<tr>
|
||||
<th>AP<hr>Prozess *</th>
|
||||
@@ -38,12 +38,12 @@
|
||||
</tr>
|
||||
{{range .SpellsLeft}}
|
||||
<tr>
|
||||
<td>{{.AP}}<hr>{{.Notes}}</td>
|
||||
<td>{{.AP}}<hr>{{.Category}} </td>
|
||||
<td>{{.Name}}</td>
|
||||
<td>{{.CastTime}}<hr>{{.Range}}</td>
|
||||
<td>{{.Scope}}<hr>{{.Duration}}</td>
|
||||
<td>{{.Notes}}</td>
|
||||
<td>{{.Objective}}<hr>{{.CastingType}}</td>
|
||||
<td>{{.Zauberdauer}} <hr>{{.Reichweite}} </td>
|
||||
<td>{{.Wirkungsbereich}} <hr>{{.Wirkungsdauer}} </td>
|
||||
<td>{{.Beschreibung}} </td>
|
||||
<td>{{.Wirkungsziel}} <hr>{{.Art}} </td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
@@ -51,7 +51,7 @@
|
||||
|
||||
<!-- Right spell table -->
|
||||
<div class="right-section">
|
||||
<!-- BLOCK: spells_right, TYPE: spells, MAX: 15 -->
|
||||
<!-- BLOCK: spells_right, TYPE: spells, MAX: 10 -->
|
||||
<table class="spells-table">
|
||||
<tr>
|
||||
<th>AP<br>Prozess *</th>
|
||||
@@ -63,18 +63,18 @@
|
||||
</tr>
|
||||
{{range .SpellsRight}}
|
||||
<tr>
|
||||
<td>{{.AP}}<hr>{{.Notes}}</td>
|
||||
<td>{{.AP}} <hr>{{.Category}} </td>
|
||||
<td>{{.Name}}</td>
|
||||
<td>{{.CastTime}}<hr>{{.Range}}</td>
|
||||
<td>{{.Scope}}<hr>{{.Duration}}</td>
|
||||
<td>{{.Notes}}</td>
|
||||
<td>{{.Objective}}<hr>{{.CastingType}}</td>
|
||||
<td>{{.Zauberdauer}} <hr>{{.Reichweite}} </td>
|
||||
<td>{{.Wirkungsbereich}} <hr>{{.Wirkungsdauer}} </td>
|
||||
<td>{{.Beschreibung}} </td>
|
||||
<td>{{.Wirkungsziel}} <hr>{{.Art}} </td>
|
||||
</tr>
|
||||
{{end}}
|
||||
</table>
|
||||
<div class="spell-footer">
|
||||
<p><em>wichtige magische Gegenstände, Tränke, Schriftrollen</em></p>
|
||||
<!-- BLOCK: magic_items, TYPE: magicItems, MAX: 8 -->
|
||||
<!-- BLOCK: magic_items, TYPE: magicItems, MAX: 5 -->
|
||||
<table class="items-table">
|
||||
<tr>
|
||||
<th>Gegenstand</th>
|
||||
|
||||
@@ -29,22 +29,24 @@
|
||||
<div class="char-icon-section">
|
||||
{{if .Character.IconBase64}}
|
||||
<img src="{{.Character.IconBase64}}" alt="Charakter" class="char-icon">
|
||||
{{else}}
|
||||
<img src="shared/images/token_bebe.png" alt="Charakter" class="char-icon">
|
||||
{{end}}
|
||||
</div>
|
||||
<table class="currency-table">
|
||||
<tr>
|
||||
<td><strong>GS</strong></td>
|
||||
<td>0</td>
|
||||
<td>{{.Character.Vermoegen.Goldstuecke}}</td>
|
||||
{{range $i := iterate 9}}<td> </td>{{end}}
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>SS</strong></td>
|
||||
<td>0</td>
|
||||
<td>{{.Character.Vermoegen.Silberstuecke}}</td>
|
||||
{{range $i := iterate 9}}<td></td>{{end}}
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>KS</strong></td>
|
||||
<td>0</td>
|
||||
<td>{{.Character.Vermoegen.Kupferstuecke}}</td>
|
||||
{{range $i := iterate 9}}<td></td>{{end}}
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user