-
Notifications
You must be signed in to change notification settings - Fork 28
/
filters.html
88 lines (79 loc) · 3.09 KB
/
filters.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Squirdle Filters Guide</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Telex" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h2>Squirdle Filters</h2>
You can use attribute filters to better search for Pokémon on Squirdle!
<br>
<h3>Syntax</h3>
<span class="syntax"><b>attr:X</b></span> Show only Pokémon with <span class="syntax small"><b>attr</b></span> exactly equal to <span class="syntax small"><b>X</b></span><br>
<span class="syntax"><b>attr!X </b></span> Show only Pokémon with <span class="syntax small"><b>attr</b></span> of any value BUT <span class="syntax small"><b>X</b></span><br>
<span class="syntax"><b>attr>X</b></span> Show only Pokémon with <span class="syntax small"><b>attr</b></span> higher than <span class="syntax small"><b>X</b></span><br>
<span class="syntax"><b>attr<X</b></span> Show only Pokémon with <span class="syntax small"><b>attr</b></span> lower than <span class="syntax small"><b>X</b></span><br>
<h3>Attributes</h3>
<p>The following attribute filters are available for use:</p>
<table class="center-table">
<thead>
<tr>
<th>Attribute</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="syntax small">gen</span></td>
<td>The generation of the pokemon</td>
</tr>
<tr>
<td><span class="syntax small">type1</span></td>
<td>The primary type of the pokemon</td>
</tr>
<tr>
<td><span class="syntax small">type2</span></td>
<td>The secundary type of the pokemon</td>
</tr>
<tr>
<td><span class="syntax small">type</span></td>
<td>Either the primary or secundary type of the pokemon</td>
</tr>
<tr>
<td><span class="syntax small">height</span></td>
<td>The height of the pokemon</td>
</tr>
<tr>
<td><span class="syntax small">weight</span></td>
<td>The weight of the pokemon</td>
</tr>
</tbody>
</table>
<h3>Examples</h3>
Show only Pokémon from generation 4:<br>
<div class="autocomplete" style="margin-top: 6px;">
<input class="guess_input" type="text" readonly value="gen:4">
</div>
<br><br>
Show Pokémon NOT from generation 4 with type1 of fire:<br>
<div class="autocomplete" style="margin-top: 6px;">
<input class="guess_input" type="text" readonly value="gen!4 type1:fire">
</div>
<br><br>
Show Pokémon from generation 4 with type1 of fire<br>and height less than 0.9:<br>
<div class="autocomplete" style="margin-top: 6px;">
<input class="guess_input" type="text" readonly value="gen:4 type1:fire height<0.9">
</div>
<br><br>
Show Pokémon from generation 4 with<br>height between 0.7 and 0.9:<br>
<div class="autocomplete" style="margin-top: 6px;">
<input class="guess_input" type="text" readonly value="gen:4 height>0.7 height<0.9">
</div>
<br><br>
<a href="javascript:history.back()">Go Back</a>
</body>