Skip to content

Commit

Permalink
Cleanup detail tables formatting a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
ExcaliburZero committed Oct 8, 2023
1 parent 9797a0b commit eb716e1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
40 changes: 20 additions & 20 deletions cbpickaxe_scripts/templates/monster_form.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ <h1>{{ name }} (#{{ bestiary_index }})</h1>
<table class="table" style="max-width: 250px;">
<tr>
<th>
<p>Type</p>
Type
</th>
<td>
<p>{{ elemental_type }}</p>
{{ elemental_type }}
</td>
</tr>
</table>
Expand All @@ -44,74 +44,74 @@ <h2>Stats</h2>
<table class="table" style="max-width: 250px;">
<tr>
<th>
<p>Max HP</p>
Max HP
</th>
<td>
<p>{{ max_hp }}</p>
{{ max_hp }}
</td>
</tr>
<tr>
<th>
<p>M. Atk</p>
M. Atk
</th>
<td>
<p>{{ melee_attack }}</p>
{{ melee_attack }}
</td>
</tr>
<tr>
<th>
<p>M. Def</p>
M. Def
</th>
<td>
<p>{{ melee_defense }}</p>
{{ melee_defense }}
</td>
</tr>
<tr>
<th>
<p>R. Atk</p>
R. Atk
</th>
<td>
<p>{{ ranged_attack }}</p>
{{ ranged_attack }}
</td>
</tr>
<tr>
<th>
<p>R. Def</p>
R. Def
</th>
<td>
<p>{{ ranged_defense }}</p>
{{ ranged_defense }}
</td>
</tr>
<tr>
<th>
<p>Speed</p>
Speed
</th>
<td>
<p>{{ speed }}</p>
{{ speed }}
</td>
</tr>
<tr>
<th>
<p>Total</p>
Total
</th>
<td>
<p>{{ stat_total }}</p>
{{ stat_total }}
</td>
</tr>
<tr>
<th>
<p>Max AP</p>
Max AP
</th>
<td>
<p>{{ max_ap }}</p>
{{ max_ap }}
</td>
</tr>
<tr>
<th>
<p>Move Slots</p>
Move Slots
</th>
<td>
<p>{{ move_slots }}</p>
{{ move_slots }}
</td>
</tr>
</table>
Expand Down
4 changes: 2 additions & 2 deletions cbpickaxe_scripts/templates/move.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ <h1>{{ name }}</h1>
<table class="table" style="max-width: 250px;">
<tr>
<th>
<p>Type</p>
Type
</th>
<td>
<p>{{ elemental_type }}</p>
{{ elemental_type }}
</td>
</tr>
</table>
Expand Down

0 comments on commit eb716e1

Please sign in to comment.