diff options
author | David Gay <david@davidgay.org> | 2021-06-06 14:15:59 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-06 14:15:59 -0400 |
commit | d2afb75b2cf512158d82ea2513ee4fb6662362a7 (patch) | |
tree | 8a939fc049446372440ba030cf2843db5c80ed35 /app/views | |
parent | bce9b7729ec148d0b728602309fea6787802468b (diff) |
Switch from power-based damage to damage types, replace block with resistance, and make natural 20 accuracy rolls always hit (and crit)
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/characters/show.html.erb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/app/views/characters/show.html.erb b/app/views/characters/show.html.erb index 75143ec..896280d 100644 --- a/app/views/characters/show.html.erb +++ b/app/views/characters/show.html.erb @@ -74,14 +74,6 @@ <th class="table-cell-padded text-right">Evasion</th> <td class="table-cell-padded"><%= @character.evasion(with_combat_style: true) %></td> </tr> - <tr> - <th class="table-cell-padded text-right">Block</th> - <td class="table-cell-padded"><%= @character.block(with_combat_style: true) %></td> - </tr> - <tr> - <th class="table-cell-padded text-right">Block Value</th> - <td class="table-cell-padded"><%= @character.block_value %></td> - </tr> </tbody> </table> </div> |