-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (86 loc) · 3.88 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Pokémon Trading Spreadsheet</title>
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="https://plan.pokemonteams.io/static/ms_gen8.css">
<link rel="shortcut icon" href="static/img/favicon.png">
</head>
<body>
<article>
<div id="loader">
<img src="https://plan.pokemonteams.io/static/img/pokeball_load.png">
<img src="static/img/itemsprites.png" class="hidden">
<img src="https://plan.pokemonteams.io/static/img/ms_gen8.png" class="hidden">
</div>
<header>
<h1><a href="#" class="name">???</a>'s Pokémon Trading Sheet</h1>
</header>
<nav></nav>
<table>
<thead>
<tr>
<th class="name" colspan="2" rowspan="2">Pokémon</th>
<th class="trainer" rowspan="2"><abbr title="Original Trainer">OT</abbr></th>
<th class="nature" rowspan="2">Nature</th>
<th class="ability" rowspan="2">Ability</th>
<th class="ivs" colspan="6"><abbr title="Individual Values">IVs</abbr></th>
<th class="egg-moves" rowspan="2">Egg Moves</th>
<th class="poke-balls" rowspan="2">Poké Ball</th>
</tr>
<tr>
<th class="hp"><abbr title="Hit Points">HP</abbr></th>
<th class="atk"><abbr title="Attack">Atk</abbr></th>
<th class="def"><abbr title="Defense">Def</abbr></th>
<th class="spa"><abbr title="Special Attack">SpA</abbr></th>
<th class="spd"><abbr title="Special Defense">SpD</abbr></th>
<th class="spe"><abbr title="Speed">Spe</abbr></th>
</tr>
</thead>
<tbody></tbody>
</table>
<div id="copy2reddit">
<div id="markdown" class="hidden"
><span class="line">
<span class="name">| Pokémon |</span
><span class="trainer"> OT/TID |</span
><span class="nature"> Nature |</span
><span class="ability"> Ability |</span
><span class="ivs"> IVs |</span
><span class="evs"> EVs |</span
><span class="egg-moves"> Egg Moves |</span
><span class="poke-balls"> Poké Ball |</span
><span class="language"> Language |</span
><span class="notes"> Notes |</span
><br>
</span
><span class="line">
<span class="name">|---------|</span
><span class="trainer">--------|</span
><span class="nature">--------|</span
><span class="ability">---------|</span
><span class="ivs">:---:|</span
><span class="evs">:---:|</span
><span class="egg-moves">-----------|</span
><span class="poke-balls">-----------|</span
><span class="language">:--------:|</span
><span class="notes">:------|</span
><br>
</span>
</div>
</div>
<footer role="contentinfo">
<p>
© of <a href="http://twitter.com/richi3f">richi3f</a>, <time datetime="2017">2017</time>-<time datetime="2020">2020</time><br>
<a href="https://clipboardjs.com">Clipboard.js</a> is © of <a href="http://zenorocha.com">Zeno Rocha</a>, <time datetime="2015">2015</time>-<time datetime="2020">2020</time><br>
Pokémon is © of Nintendo, <time datetime="1995">1995</time>-<time datetime="2020">2020</time>
</p>
</footer>
</article>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2/dist/clipboard.min.js" type="text/javascript"></script>
<script src="static/config8.js"></script>
<script src="static/script8.js"></script>
</body>
</html>