-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcharmeleon.html
136 lines (124 loc) · 4.7 KB
/
charmeleon.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>005 Charmeleon</title>
<meta charset='utf-8'>
<link rel="stylesheet" type="text/css" href="cstyles.css">
</head>
<body>
<main id='cmain'>
<div>
<h2>005 Charmeleon</h2>
<img class='cpic' src='graphics/005 Charmeleon.png'>
</div>
<table>
<tr>
<th>Pokedex Number</th>
<th>Type</th>
<th>Classification</th>
</tr>
<tr>
<td><span class="ctype">
National: 005<br>
Galarian: 379<br>
</span>
</td>
<td><span class='ctype'><img class='Ticon' src='graphics/Fire Type.png' > Fire</span></td>
<td><span class="ctype">Flame 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/Bug Type.png'> Bug</span>
<span class='ctype'><img class='Ticon' src='graphics/Steel Type.png'> Steel</span>
<span class='ctype'><img class='Ticon' src='graphics/Ice Type.png'> Ice</span>
<span class='ctype'><img class='Ticon' src='graphics/Grass Type.png'> Grass</span>
</td>
<td>
<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>
<span class='ctype'><img class='Ticon' src='graphics/Water Type.png'> Water</span>
<span class='ctype'><img class='Ticon' src='graphics/Dragon Type.png'> Dragon</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Bug Type.png'> Bug</span>
<span class='ctype'><img class='Ticon' src='graphics/Steel Type.png'> Steel</span>
<span class='ctype'><img class='Ticon' src='graphics/Fire Type.png' > Fire</span>
<span class='ctype'><img class='Ticon' src='graphics/Grass Type.png'> Grass</span>
<span class='ctype'><img class='Ticon' src='graphics/Ice Type.png'> Ice</span>
<span class='ctype'><img class='Ticon' src='graphics/Fairy Type.png' > Fairy</span>
</td>
<td>
<span class='ctype'><img class='Ticon' src='graphics/Ground Type.png'> Ground</span>
<span class='ctype'><img class='Ticon' src='graphics/Rock Type.png'> Rock</span>
<span class='ctype'><img class='Ticon' src='graphics/Water Type.png'> Water</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">Blaze</span>
</td>
<td>
<span class="ctype"> Normal</span>
</td>
<td>
<span class="ctype">When HP is below 1/3 of its maximum, power of Fire-type moves is increased by 50%.</span>
</td>
</tr>
<tr>
<td>
<span class="ctype">Solar Power</span>
</td>
<td>
<span class="ctype">Hidden</span>
</td>
<td>
<span class="ctype">While the weather is sunny, Charmeleon's Special Attack is increased by 50%, but it takes 1/8 of its max HP damage every turn.</span>
</td>
</tr>
</table>
</div>
<div>
<p>Evolution Line</p>
<img class='evoline' src='graphics/Evolution Lines/004 Charmander Charmeleon Charizard.png '>
</div>
<div>
<p>Pokedex Entries</p>
<ul>
<li>It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws.</li>
<li>If it becomes agitated during battle, it spouts intense flames, incinerating its surroundings.
</li>
<li>Tough fights could excite this Pokémon. When excited, it may breathe out bluish-white flames.</li>
<li>Charmeleon mercilessly destroys its foes using its sharp claws. If it encounters a strong foe, it turns aggressive. In this excited state, the flame at the tip of its tail flares with a bluish white color.</li>
</ul>
</div>
<p>Base Stats</p>
<div class='statblock ctype'>
<b><i>HP</b></i>: 58 <br>
<b><i>Attack</b></i>: 64 <br>
<b><i>Defense</b></i>: 58 <br>
<b><i>Special Attack</b></i>: 80 <br>
<b><i>Special Defense</b></i>: 65 <br>
<b><i>Speed</b></i>: 80 <br>
<br>
<b><i>Total</b></i>: 405
</div>
</main>
</body>
</html>