-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpikachu.html
136 lines (121 loc) · 4.12 KB
/
pikachu.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!doctype html>
<html>
<head>
<title>025 Pikachu</title>
<meta charset='utf-8'>
<link rel="stylesheet" type="text/css" href="cstyles.css">
</head>
<body>
<main id='cmain'>
<div>
<h2>025 Pikachu</h2>
<img class='cpic' src='graphics/025 Pikachu.png'>
</div>
<table>
<tr>
<th>Pokedex Number</th>
<th>Type</th>
<th>Classification</th>
</tr>
<tr>
<td><span class="ctype">
National: 025<br>
Galarian: 194<br>
Isle of Armor: 085
</span>
</td>
<td><span class='ctype'><img class='Ticon' src='graphics/Electric Type.png' > Electric</span></td>
<td><span class="ctype">Mouse Pokémon</span></td>
</tr>
</table>
<table>
<tr>
<th>Attack strong against</th>
<th>Attack weak against</th>
<th>Resistant to</th>
<th>Vulnerable to</th>
</tr>
<tr>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Flying Type.png'> Flying</span>
<span class='ctype'><img class='Ticon' src='graphics/Water Type.png'> Water</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Ground Type.png'> Ground</span>
<span class='ctype'><img class='Ticon' src='graphics/Grass Type.png'> Grass</span>
<span class='ctype'><img class='Ticon' src='graphics/Electric Type.png'> Electric</span>
<span class='ctype'><img class='Ticon' src='graphics/Dragon Type.png'> Dragon</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Flying Type.png'> Flying</span>
<span class='ctype'><img class='Ticon' src='graphics/Steel Type.png'> Steel</span>
<span class='ctype'><img class='Ticon' src='graphics/Electric Type.png'> Electric</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Ground Type.png'> Ground</span>
</td>
</tr>
</table>
<div>
<p>Abilities</p>
<table>
<tr>
<th>Ability</th>
<th>Ability Type</th>
<th>Ability effects</th>
</tr>
<tr>
<td>
<span class="ctype">Static</span>
</td>
<td>
<span class="ctype"> Normal</span>
</td>
<td>
<span class="ctype">The opponent has a 30% chance of being paralyzed when using an attack, that requires physical contact against Pikachu.</span>
</td>
</tr>
<tr>
<td>
<span class="ctype">Lightning Rod</span>
</td>
<td>
<span class="ctype">Hidden</span>
</td>
<td>
<span class="ctype">The Pokémon draws in all Electric-type moves. Instead of being hit by those moves, it boosts its Sp. Atk.</span>
</td>
</tr>
</table>
</div>
<div>
<p>Evolution Line</p>
<img class='evoline' src='graphics/Evolution Lines/025 Pichu Pikachu Raichu.png '>
</div>
<div>
<p>Gigantamax Form</p>
<img class='cpic' src='graphics/025-giganta pikachu.png'>
</div>
<div>
<p>Pokedex Entries</p>
<ul>
<li>Pikachu that can generate powerful electricity have cheek sacs that are extra soft and super stretchy.</li>
<li>When Pikachu meet, they'll touch their tails together and exchange electricity through them as a form of greeting. </li>
<li>This forest-dwelling Pokémon stores electricity in its cheeks, so you'll feel a tingly shock if you touch it.</li>
<li>It occasionally uses an electric shock to recharge a fellow Pikachu that is in a weakened state.</li>
</ul>
</div>
<p>Base Stats</p>
<div class='statblock ctype'>
<b><i>HP</b></i>: 35 <br>
<b><i>Attack</b></i>: 55 <br>
<b><i>Defense</b></i>: 40 <br>
<b><i>Special Attack</b></i>: 50 <br>
<b><i>Special Defense</b></i>: 50 <br>
<b><i>Speed</b></i>: 90 <br>
<br>
<b><i>Total</b></i>: 320
</div>
</main>
</body>
</html>