forked from richi3f-zz/pokemon-trading-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
186 lines (182 loc) · 8.48 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Pokémon Trading Spreadsheet</title>
<link rel="stylesheet" href="static/bootstrap.min.css">
<link rel="stylesheet" href="static/style.css">
<script src="static/config.js"></script>
</head>
<body>
<article>
<div id="loader">
<img src="static/pokeball-white.png">
<img src="static/bg.png" class="hidden">
<img src="static/itemsprites.png" class="hidden">
<img src="static/menusprites.png" class="hidden">
<img src="static/types.png" class="hidden">
</div>
<header>
<h1></h1>
<div id="trainer-info">
</div>
<nav>
<ul></ul>
</nav>
</header>
<div id="filters">
<h3>Filters</h3>
<div class="filter">
<label for="search-bar">Search</label>
<input id="search-bar" type="search">
</div><!--
--><div class="filter">
<label for="gen-filter">Generation</label>
<select id="gen-filter" multiple="multiple">
<option value="gen1">Generation I</option>
<option value="gen2">Generation II</option>
<option value="gen3">Generation III</option>
<option value="gen4">Generation IV</option>
<option value="gen5">Generation V</option>
<option value="gen6">Generation VI</option>
<option value="gen7">Generation VII</option>
</select>
</div><!--
--><div class="filter">
<label for="ball-filter">Poké Ball</label>
<select id="ball-filter" multiple="multiple">
<option value="poke-ball">Poké Ball</option>
<option value="great-ball">Great Ball</option>
<option value="ultra-ball">Ultra Ball</option>
<option value="safari-ball">Safari Ball</option>
<option value="net-ball">Net Ball</option>
<option value="dive-ball">Dive Ball</option>
<option value="nest-ball">Nest Ball</option>
<option value="repeat-ball">Repeat Ball</option>
<option value="timer-ball">Timer Ball</option>
<option value="luxury-ball">Luxury Ball</option>
<option value="premier-ball">Premier Ball</option>
<option value="dusk-ball">Dusk Ball</option>
<option value="heal-ball">Heal Ball</option>
<option value="quick-ball">Quick Ball</option>
<option value="fast-ball">Fast Ball</option>
<option value="level-ball">Level Ball</option>
<option value="lure-ball">Lure Ball</option>
<option value="heavy-ball">Heavy Ball</option>
<option value="love-ball">Love Ball</option>
<option value="friend-ball">Friend Ball</option>
<option value="moon-ball">Moon Ball</option>
<option value="sport-ball">Sport Ball</option>
<option value="dream-ball">Dream Ball</option>
<option value="beast-ball">Beast Ball</option>
</select>
</div><!--
--><div class="filter">
<label for="ratio-filter">Gender Ratio</label>
<select id="ratio-filter" multiple="multiple">
<option value="gender-ratio-1-0">Female Only</option>
<option value="gender-ratio-7-1">7 ♀ : 1 ♂</option>
<option value="gender-ratio-3-1">3 ♀ : 1 ♂</option>
<option value="gender-ratio-1-1">1 ♀ : 1 ♂</option>
<option value="gender-ratio-1-3">1 ♀ : 3 ♂</option>
<option value="gender-ratio-1-7">1 ♀ : 7 ♂</option>
<option value="gender-ratio-0-1">Male Only</option>
<option value="gender-ratio-0-0">Genderless</option>
</select>
</div><!--
--><div class="filter">
<label for="category-filter">Category</label>
<select id="category-filter" multiple="multiple">
<option value="baby">Baby Pokémon</option>
<option value="normal">Normal Pokémon</option>
<option value="legendary">Legendary Pokémon</option>
</select>
</div><!--
--><div class="filter">
<label for="misc-filter"><abbr title="Miscellaneous">Misc.</abbr></label>
<select id="misc-filter" multiple="multiple">
<option value="baby">Baby Only</option>
<option value="hidden-ability">Hidden Ability Only</option>
<option value="shiny">Shiny Only</option>
</select>
</div><!--
--><div class="filter">
<label for="mode-filter">Mode</label>
<select id="mode-filter">
<option value="normal" selected>Normal</option>
<option value="show-missing">Show Missing Pokémon</option>
<option value="show-missing-families">Show Missing Pokémon Families</option>
</select>
</div><!--
--><div class="filter">
<button id="copy-table" title="Generates a nicely formatted table for use on reddit">Reddit copy</button>
</div>
</div>
<table>
<thead>
<tr>
<th class="name" colspan="2" rowspan="2">Pokémon</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="hidden-power" rowspan="2">Hidden Power</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>
<footer role="contentinfo">
<p>
© of <a href="http://twitter.com/richi3f">richi3f</a>, <time datetime="2017">2017</time><br>
Bootstrap is © of Twitter, <time datetime="2017">2017</time><br>
<a href="http://davidstutz.github.io/bootstrap-multiselect/">Bootstrap Multiselect</a> is © of <a href="http://davidstutz.de/">David Stutz</a>, <time datetime="2012">2012</time>-<time datetime="2014">2014</time><br>
Animated models extracted by <a href="http://www.pkparaiso.com/">Pokémon Paraíso</a><br>
Pokémon is © of Nintendo, <time datetime="1995">1995</time>-<time datetime="2017">2017</time>
</p>
</footer>
<div id="modal" class="hidden">
<div id="pokemon-info">
<figure></figure>
<h1>
<span class="name"></span> <span class="gender"></span> <span class="level"></span>
</h1>
<span class="language" title=""></span>
<dl>
<dt class="trainer"><abbr title="Original Trainer">OT</abbr></dt><!--
--><dd></dd>
<dt class="nature">Nature</dt><!--
--><dd></dd>
<dt class="ability">Ability</dt><!--
--><dd></dd>
<dt class="ivs"><abbr title="Individual Values">IVs</abbr></dt><!--
--><dd></dd>
<dt class="evs"><abbr title="Effort Values">EVs</abbr></dt><!--
--><dd></dd>
</dl>
<ul class="egg-moves">
</ul>
</div>
</div>
<div id="copy" class="hidden">
<div id="table-info">
<h1>Ctrl+A to select everything, Ctrl+C to copy</h1>
<textarea id="pokemon-copy-table"></textarea>
</div>
</div>
</article>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="static/bootstrap.min.js"></script>
<script src="static/bootstrap.multiselect.js"></script>
<script src="static/script.js"></script>
</body>
</html>