-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetapod.html
123 lines (112 loc) · 4.21 KB
/
metapod.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
<!doctype html>
<html>
<head>
<title>011 Metapod</title>
<meta charset='utf-8'>
<link rel="stylesheet" type="text/css" href="cstyles.css">
</head>
<body>
<main id='cmain'>
<div>
<h2>011 Metapod</h2>
<img class='cpic' src='graphics/011 Metapod.png'>
</div>
<table>
<tr>
<th>Pokedex Number</th>
<th>Type</th>
<th>Classification</th>
</tr>
<tr>
<td><span class="ctype">
National: 011<br>
Galarian: 014<br>
</span>
</td>
<td><span class='ctype'><img class='Ticon' src='graphics/Bug Type.png' > Bug</span></td>
<td><span class="ctype">Cocoon Pokémon</span></td>
</tr>
</table>
<table>
<tr>
<th>Attack (Pokemon's type) strong against</th>
<th>Attack (Pokemon's type) weak against</th>
<th>Resistant to</th>
<th>Vulnerable to</th>
</tr>
<tr>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Psychic Type.png'> Psychic</span>
<span class='ctype'><img class='Ticon' src='graphics/Dark Type.png'> Dark</span>
<span class='ctype'><img class='Ticon' src='graphics/Grass Type.png'> Grass</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Fire Type.png' > Fire</span>
<span class='ctype'><img class='Ticon' src='graphics/Fighting Type.png'> Fighting</span>
<span class='ctype'><img class='Ticon' src='graphics/Poison Type.png'> Poison</span>
<span class='ctype'><img class='Ticon' src='graphics/Flying Type.png'> Flying</span>
<span class='ctype'><img class='Ticon' src='graphics/Ghost Type.png'> Ghost</span>
<span class='ctype'><img class='Ticon' src='graphics/Steel Type.png'> Steel</span>
<span class='ctype'><img class='Ticon' src='graphics/Fairy Type.png' > Fairy</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Fighting Type.png'> Fighting</span>
<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>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Flying Type.png'> Flying</span>
<span class='ctype'><img class='Ticon' src='graphics/Rock Type.png'> Rock</span>
<span class='ctype'><img class='Ticon' src='graphics/Fire Type.png' > Fire</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">Shed Skin</span>
</td>
<td>
<span class="ctype"> Normal</span>
</td>
<td>
<span class="ctype">The Pokemon has a 1/3 chance of healing from a status condition for example burn, paralysis, etc every turn.</span>
</td>
</tr>
</table>
</div>
<div>
<p>Evolution Line</p>
<img class='evoline' src='graphics/Evolution Lines/010 Caterpie Metapod Butterfree.png '>
</div>
<div>
<p>Pokedex Entries</p>
<ul>
<li>It is waiting for the moment to evolve. At this stage, it can only harden, so it remains motionless to avoid attack.</li>
<li>Even though it is encased in a sturdy shell, the body inside is tender. It can't withstand a harsh attack.
</li>
<li> Hardens its shell to protect itself. However, a large impact may cause it to pop out of its shell.</li>
<li> Its hard shell doesn't crack a bit even if Pikipek pecks at it, but it will tip over, spilling out its insides.</li>
</ul>
</div>
<p>Base Stats</p>
<div class='statblock ctype'>
<b><i>HP</b></i>: 50 <br>
<b><i>Attack</b></i>: 20 <br>
<b><i>Defense</b></i>: 55 <br>
<b><i>Special Attack</b></i>: 25 <br>
<b><i>Special Defense</b></i>: 25 <br>
<b><i>Speed</b></i>: 30 <br>
<br>
<b><i>Total</b></i>: 205
</div>
</main>
</body>
</html>