summaryrefslogtreecommitdiff
path: root/app/views/games/ptu/pokemon/show.html.erb
blob: c4454cda32eb11631a23ae244b1d53720c611ed8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div class="my-4"><%= link_to "Back", games_ptu_pokemon_index_path %></div>

<h1><%= @pokemon.name %></h1>

<div class="my-2"><%= link_to "Edit", edit_games_ptu_pokemon_path(@pokemon) %></div>

<table>
  <tr>
    <td>Base HP</td>
    <td><%= @pokemon.base_hp %></td>
  </tr>
  <tr>
    <td>Base ATK</td>
    <td><%= @pokemon.base_atk %></td>
  </tr>
  <tr>
    <td>Base DEF</td>
    <td><%= @pokemon.base_def %></td>
  </tr>
  <tr>
    <td>Base SPATK</td>
    <td><%= @pokemon.base_spatk %></td>
  </tr>
  <tr>
    <td>Base SPDEF</td>
    <td><%= @pokemon.base_spdef %></td>
  </tr>
  <tr>
    <td>Base SPEED</td>
    <td><%= @pokemon.base_speed %></td>
  </tr>
  <tr>
    <td>Gender Ratio</td>
    <td><%= @pokemon.gender_ratio_string %></td>
  </tr>
</table>