-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhard.html
More file actions
348 lines (344 loc) · 23.3 KB
/
hard.html
File metadata and controls
348 lines (344 loc) · 23.3 KB
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title> Bendle </title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet"
href="https://use.fontawesome.com/releases/v6.1.1/css/all.css"
integrity="sha384-/frq1SRXYH/bSyou/HUp/hib7RVN1TawQYja658FEOodR/FQBKVqT9Ol+Oz3Olq5"
crossorigin="anonymous">
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
</head>
<body onclick="dropDown()" onload="timeChecker(); getCharacterInfo(); loadGameHard()" >
<!-- Navigation Bar -->
<div class="navbar">
<div class="navbarSections">
<div class="navbarSection1">
<div class="navbarSection1" id="menu" onclick="levelSelect()">
<i class="fa-solid fa-bars" id="menuIcon"></i>
</div>
</div>
<div class="navbarSection2">
<a id="title" href="hard.html"> BENDLE</a>
</div>
<div class="navbarSection3">
<i id="help" class="fa-solid fa-circle-question" onclick="howToPlay()"></i>
<i id="home"class="fa-solid fa-house" onclick="homeScreen()" onload="loadGameNormal()"></i>
</div>
</div>
</div>
<!-- Level Select Menu -->
<div class="navbarMenuSelect">
<div class="nothing" id="levelMenu">
<a class="levelEasy" id="levelEasy" href="easy.html"> Easy</a>
<a class="levelNormal" id="levelNormal" href="index.html"> Normal </a>
<a class="levelHard" id="levelHard" href="hard.html"> Hard</a>
<a class="levelImpossible" id="levelImpossible" href="impossible.html"> Impossible</a>
</div>
</div>
<!-- How To Play Screen -->
<div class="navbarPlayMenu">
<div class="nothing" id="playMenu">
<div class="playTitle" id="playTitle"> How To Play:</div>
<div class="playInfo" id="playInfo">Guess the Avatar Legends character.<br>
After each guess you will receive hints about the character.<br>
1st hint: Characters ethnicity<br>
2nd hint: Characters nationality<br>
3rd hint: Characters main fighting Style<br>
4th hint: Characters date of birth and date of death (before/after the Air nomad Genocide)<br>
5th hint: Characters gender and species<br>
6th hint: Information about the character<br>
7th hint: Additional information about the character<br>
8th hint: Picture of the character
</div>
<div class="difficultyTitle" id="difficultyTitle"> Difficulties:</div>
<div class="difficultyInfo" id="difficultyInfo">
Easy: Main characters from ATLA and LOK<br>
Normal: Well known characters from ATLA and LOK<br>
Hard: Adds lesser known characters from all media<br>
Impossible: Adds all named characters from the list (Currently incomplete)<br>
(All 4 difficulties can be played each day)
</div>
<div class="informationTitle" id="informationTitle"> Information:</div>
<div class="informationInfo" id="informationInfo">
The list of characters and their information is from the Avatar Wiki.<br>
<a class="WikiLink" href="https://avatar.fandom.com/wiki/Category:Characters" target="_blank"> List of Avatar characters</a>
</div>
</div>
</div>
<!-- Home Screen -->
<div class="navbarHomeScreen">
<div class="nothing" id="homeScreen">
<div class="resultsTitle" id="resultsTitle"> Results:</div>
<div class="resultsInfo" id="resultsInfo">
<i id="resultsInfo">Easy: </i>
<div id="resultsEasy"> </div>
<i id="resultsInfo"> <br> Normal:</i>
<div id="resultsNormal"> </div>
<i id="resultsInfo"> <br> Hard:</i>
<div id="resultsHard"> </div>
<i id="resultsInfo"> <br> Impossible:</i>
<div id="resultsImpossible"></div>
</div>
<div class="countdown" id="countdown"> Next Bendle: </div>
<div class="countdownInfo" id="countdownInfo">
</div>
</div>
</div>
<!-- Main Section -->
<div class="main" id="main">
<!-- Main Header -->
<div class="mainSection">
<div class="mainTitle">
ATLA: Character Guessing Game
</div>
<div class="level">
HARD
</div>
</div>
<!-- Dropdown Menu -->
<div class="dropDown">
<form>
<div class="dropDownMain" id="dropDownMain"></div>
<div class="dropDownMenu" id="dropDownMenu">
<input list="characterSelect" id="characterSelect" type="text" placeholder="Search.." onkeyup="filterItems()"/>
<div class="dropDownItems" id="dropDownItems" onclick="characterSelected()">
<option class="dropDownItem" id="SelectaCharacter"> Select a Character </option>
<option class="dropDownItem" id="Aang"> Aang </option>
<option class="dropDownItem" id="Aiwei"> Aiwei </option>
<option class="dropDownItem" id="Amon"> Amon </option>
<option class="dropDownItem" id="Appa"> Appa </option>
<option class="dropDownItem" id="Arnook"> Arnook </option>
<option class="dropDownItem" id="AsamiSato"> Asami Sato </option>
<option class="dropDownItem" id="Azula"> Azula </option>
<option class="dropDownItem" id="Azulon"> Azulon </option>
<option class="dropDownItem" id="Baatar"> Baatar </option>
<option class="dropDownItem" id="BaatarJr"> Baatar Jr </option>
<option class="dropDownItem" id="Bato"> Bato </option>
<option class="dropDownItem" id="TheBigBadHippo"> The Big Bad Hippo </option>
<option class="dropDownItem" id="Bolin"> Bolin </option>
<option class="dropDownItem" id="Bosco"> Bosco </option>
<option class="dropDownItem" id="TheBoulder"> The Boulder </option>
<option class="dropDownItem" id="Bumi"> Bumi </option>
<option class="dropDownItem" id="Bumi(KingofOmashu)"> Bumi (King of Omashu) </option>
<option class="dropDownItem" id="CabbageMerchant"> Cabbage Merchant</option>
<option class="dropDownItem" id="Chit Sang"> Chit Sang </option>
<option class="dropDownItem" id="Chong"> Chong </option>
<option class="dropDownItem" id="CombustionMan"> Combustion Man </option>
<option class="dropDownItem" id="DesnaandEska"> Desna and Eska </option>
<option class="dropDownItem" id="Dock/Xu/Bushi"> Dock/Xu/Bushi </option>
<option class="dropDownItem" id="TheDuke"> The Duke </option>
<option class="dropDownItem" id="Fang"> Fang </option>
<option class="dropDownItem" id="Fisherman"> Fisherman </option>
<option class="dropDownItem" id="Fisherman'sWife"> Fisherman's Wife </option>
<option class="dropDownItem" id="Flopsie"> Flopsie </option>
<option class="dropDownItem" id="Foamingmouthguy"> Foaming mouth guy </option>
<option class="dropDownItem" id="Ginger"> Ginger </option>
<option class="dropDownItem" id="Gun"> Gun </option>
<option class="dropDownItem" id="Gyatso"> Gyatso </option>
<option class="dropDownItem" id="Hahn"> Hahn </option>
<option class="dropDownItem" id="Hakoda"> Hakoda </option>
<option class="dropDownItem" id="Hama"> Hama </option>
<option class="dropDownItem" id="Haru"> Haru </option>
<option class="dropDownItem" id="Haru'smother"> Haru's mother </option>
<option class="dropDownItem" id="HeadoftheDaiLi"> Head of the Dai Li </option>
<option class="dropDownItem" id="HeiBai"> Hei Bai </option>
<option class="dropDownItem" id="Herbalist"> Herbalist </option>
<option class="dropDownItem" id="Hide"> Hide </option>
<option class="dropDownItem" id="HiroshiSato"> Hiroshi Sato </option>
<option class="dropDownItem" id="Hope"> Hope </option>
<option class="dropDownItem" id="How"> How </option>
<option class="dropDownItem" id="Huan"> Huan </option>
<option class="dropDownItem" id="Huu"> Huu </option>
<option class="dropDownItem" id="Ikki"> Ikki </option>
<option class="dropDownItem" id="IknikBlackstoneVarrick"> Iknik Blackstone Varrick </option>
<option class="dropDownItem" id="Iroh"> Iroh </option>
<option class="dropDownItem" id="Iroh(UnitedForcesGeneral)"> Iroh (United Forces General) </option>
<option class="dropDownItem" id="Izumi"> Izumi </option>
<option class="dropDownItem" id="Jee"> Jee </option>
<option class="dropDownItem" id="JeongJeong"> Jeong Jeong </option>
<option class="dropDownItem" id="Jet"> Jet </option>
<option class="dropDownItem" id="Jin"> Jin </option>
<option class="dropDownItem" id="Jinora"> Jinora </option>
<option class="dropDownItem" id="JooDee"> Joo Dee </option>
<option class="dropDownItem" id="Juicy"> Juicy </option>
<option class="dropDownItem" id="June"> June </option>
<option class="dropDownItem" id="Kahchi"> Kahchi </option>
<option class="dropDownItem" id="Kai"> Kai </option>
<option class="dropDownItem" id="Kanna"> Kanna </option>
<option class="dropDownItem" id="Karu"> Karu </option>
<option class="dropDownItem" id="Katara"> Katara </option>
<option class="dropDownItem" id="Kay-fon"> Kay-fon </option>
<option class="dropDownItem" id="Koh"> Koh </option>
<option class="dropDownItem" id="Koko"> Koko </option>
<option class="dropDownItem" id="Korra"> Korra </option>
<option class="dropDownItem" id="Kuei"> Kuei </option>
<option class="dropDownItem" id="Kuruk"> Kuruk </option>
<option class="dropDownItem" id="Kuvira"> Kuvira </option>
<option class="dropDownItem" id="Kya"> Kya </option>
<option class="dropDownItem" id="Kya(nonbender)"> Kya (nonbender) </option>
<option class="dropDownItem" id="Kyoshi"> Kyoshi </option>
<option class="dropDownItem" id="La"> La </option>
<option class="dropDownItem" id="LaoBeifong"> Lao Beifong </option>
<option class="dropDownItem" id="Lee"> Lee </option>
<option class="dropDownItem" id="Lefty"> Lefty </option>
<option class="dropDownItem" id="Lieutenant"> Lieutenant </option>
<option class="dropDownItem" id="LightningBoltZolt"> Lightning Bolt Zolt </option>
<option class="dropDownItem" id="LinBeifong"> Lin Beifong </option>
<option class="dropDownItem" id="LoandLi"> Lo and Li </option>
<option class="dropDownItem" id="LongFeng"> Long Feng </option>
<option class="dropDownItem" id="Longshot"> Longshot </option>
<option class="dropDownItem" id="LuTen"> Lu Ten </option>
<option class="dropDownItem" id="Mai"> Mai </option>
<option class="dropDownItem" id="Mako"> Mako </option>
<option class="dropDownItem" id="Mechanist"> Mechanist </option>
<option class="dropDownItem" id="Meelo"> Meelo </option>
<option class="dropDownItem" id="Michi"> Michi </option>
<option class="dropDownItem" id="Ming(pro-bender)"> Ming (pro-bender) </option>
<option class="dropDownItem" id="Ming-Hua"> Ming-Hua </option>
<option class="dropDownItem" id="Miyuki"> Miyuki </option>
<option class="dropDownItem" id="Momo"> Momo </option>
<option class="dropDownItem" id="Mongke"> Mongke </option>
<option class="dropDownItem" id="Mula"> Mula </option>
<option class="dropDownItem" id="Mushi"> Mushi </option>
<option class="dropDownItem" id="Naga"> Naga </option>
<option class="dropDownItem" id="Nyla"> Nyla </option>
<option class="dropDownItem" id="Ogodei"> Ogodei </option>
<option class="dropDownItem" id="Oh"> Oh </option>
<option class="dropDownItem" id="OnJi"> On Ji </option>
<option class="dropDownItem" id="Oogi"> Oogi </option>
<option class="dropDownItem" id="Opal"> Opal </option>
<option class="dropDownItem" id="Otaku"> Otaku </option>
<option class="dropDownItem" id="Oyaji"> Oyaji </option>
<option class="dropDownItem" id="Ozai"> Ozai </option>
<option class="dropDownItem" id="P'Li"> P'Li </option>
<option class="dropDownItem" id="Pabu"> Pabu </option>
<option class="dropDownItem" id="Pakku"> Pakku </option>
<option class="dropDownItem" id="Pao"> Pao </option>
<option class="dropDownItem" id="Pasang"> Pasang </option>
<option class="dropDownItem" id="Pathik"> Pathik </option>
<option class="dropDownItem" id="Pema"> Pema </option>
<option class="dropDownItem" id="Pepper"> Pepper </option>
<option class="dropDownItem" id="Piandao"> Piandao </option>
<option class="dropDownItem" id="Pipsqueak"> Pipsqueak </option>
<option class="dropDownItem" id="Poki"> Poki </option>
<option class="dropDownItem" id="Poon"> Poon </option>
<option class="dropDownItem" id="PoppyBeifong"> Poppy Beifong </option>
<option class="dropDownItem" id="Qin"> Qin </option>
<option class="dropDownItem" id="Raava"> Raava </option>
<option class="dropDownItem" id="Raiko"> Raiko </option>
<option class="dropDownItem" id="RanandShaw"> Ran and Shaw </option>
<option class="dropDownItem" id="Rohan"> Rohan </option>
<option class="dropDownItem" id="Roku"> Roku </option>
<option class="dropDownItem" id="Ryu"> Ryu </option>
<option class="dropDownItem" id="Saikhan"> Saikhan </option>
<option class="dropDownItem" id="Senna"> Senna </option>
<option class="dropDownItem" id="ShadyShin"> Shady Shin </option>
<option class="dropDownItem" id="Shaozu"> Shaozu </option>
<option class="dropDownItem" id="Shinu"> Shinu </option>
<option class="dropDownItem" id="Smellerbee"> Smellerbee </option>
<option class="dropDownItem" id="Sneers"> Sneers </option>
<option class="dropDownItem" id="Sokka"> Sokka </option>
<option class="dropDownItem" id="Song"> Song </option>
<option class="dropDownItem" id="Sozin"> Sozin </option>
<option class="dropDownItem" id="Suki"> Suki </option>
<option class="dropDownItem" id="Sung"> Sung </option>
<option class="dropDownItem" id="SuyinBeifong"> Suyin Beifong </option>
<option class="dropDownItem" id="Szeto"> Szeto </option>
<option class="dropDownItem" id="Tahno"> Tahno </option>
<option class="dropDownItem" id="Tarrlok"> Tarrlok </option>
<option class="dropDownItem" id="Tashi"> Tashi </option>
<option class="dropDownItem" id="Tenzin"> Tenzin </option>
<option class="dropDownItem" id="Teo"> Teo </option>
<option class="dropDownItem" id="Than"> Than </option>
<option class="dropDownItem" id="Tho"> Tho </option>
<option class="dropDownItem" id="Tonraq"> Tonraq </option>
<option class="dropDownItem" id="TophBeifong"> Toph Beifong </option>
<option class="dropDownItem" id="Toza"> Toza </option>
<option class="dropDownItem" id="Tu"> Tu </option>
<option class="dropDownItem" id="Tui"> Tui </option>
<option class="dropDownItem" id="TwoToedPing"> Two Toed Ping </option>
<option class="dropDownItem" id="TyLee"> TyLee </option>
<option class="dropDownItem" id="Tycho"> Tycho </option>
<option class="dropDownItem" id="Tyro"> Tyro </option>
<option class="dropDownItem" id="Ummi"> Ummi </option>
<option class="dropDownItem" id="Unalaq"> Unalaq </option>
<option class="dropDownItem" id="Ursa"> Ursa </option>
<option class="dropDownItem" id="Vaatu"> Vaatu </option>
<option class="dropDownItem" id="Vachir"> Vachir </option>
<option class="dropDownItem" id="Viper"> Vapier </option>
<option class="dropDownItem" id="Wan"> Wan </option>
<option class="dropDownItem" id="WanShiTong"> Wan Shi Tong </option>
<option class="dropDownItem" id="WeiandWing"> Wei and Wing </option>
<option class="dropDownItem" id="Wu"> Wu </option>
<option class="dropDownItem" id="XinFu"> Xin Fu </option>
<option class="dropDownItem" id="Yagoda"> Yagoda </option>
<option class="dropDownItem" id="Yakone"> Yakone </option>
<option class="dropDownItem" id="Yangchen"> Yangchen </option>
<option class="dropDownItem" id="Yeh-Lu"> Yeh-Lu </option>
<option class="dropDownItem" id="Yin"> Yin </option>
<option class="dropDownItem" id="YonRha"> Yon Rha </option>
<option class="dropDownItem" id="Yu"> Yu </option>
<option class="dropDownItem" id="Yue"> Yue </option>
<option class="dropDownItem" id="Yung"> Yung </option>
<option class="dropDownItem" id="Yung(captain)"> Yung (captain) </option>
<option class="dropDownItem" id="Zaheer"> Zaheer </option>
<option class="dropDownItem" id="Zei"> Zei </option>
<option class="dropDownItem" id="Zhao"> Zhao </option>
<option class="dropDownItem" id="ZhuLiMoon"> Zhu Li Moon </option>
<option class="dropDownItem" id="Zuko"> Zuko </option>
</div>
</div>
</form>
</div>
<!-- Submit Button -->
<div class="submitButton" id="submitButton">
<button type="submit" class="button" id="button" onclick="submitGuess()"> Submit </button>
</div>
<!-- Character Information -->
<div class="characterInformation">
<div class="nothing" id="characterTitle"> Character:</div>
<div class="nothing" id="characterInfo"></div>
<div class="nothing" id="wikiLink"> Avatar Wiki Link:</div>
<div class="nothing" id="wikiInfo"></div>
<div class="nothing" id="guess8"> No Guess</div>
<div class="nothing" id="pictureTitle"> Picture: </div>
<div class="nothing" id="pictureInfo"></div>
<div class="nothing" id="guess7"> No Guess</div>
<div class="nothing" id="addInfoTitle"> Additional Information: </div>
<div class="nothing" id="addInfoInfo"></div>
<div class="nothing" id="guess6"> No Guess</div>
<div class="nothing" id="infoTitle"> Information: </div>
<div class="nothing" id="infoInfo"></div>
<div class="nothing" id="guess5"> No Guess</div>
<div class="nothing" id="genderTitle"> Gender: </div>
<div class="nothing" id="genderInfo"></div>
<div class="nothing" id="speciesTitle"> Species: </div>
<div class="nothing" id="speciesInfo"></div>
<div class="nothing" id="guess4"> No Guess</div>
<div class="nothing" id="bornTitle"> Born: </div>
<div class="nothing" id="bornInfo"></div>
<div class="nothing" id="diedTitle"> Died: </div>
<div class="nothing" id="diedInfo"></div>
<div class="nothing" id="guess3"> No Guess</div>
<div class="nothing" id="fightingTitle"> Main Fighting Style: </div>
<div class="nothing" id="benderInfo"></div>
<div class="nothing" id="guess2"> No Guess</div>
<div class="nothing" id="nationalityTitle"> Nationality: </div>
<div class="nothing" id="nationInfo"> </div>
<div class="nothing" id="guess1"> No Guess</div>
<div class="descriptions" id="ethnicityTitle"> Ethnicity: </div>
<div class="information" id="ethnicityInfo"> </div>
</div>
</div>
</body>
<script src="appHard.js"></script>
<script src="app.js"></script>
<script src="countdown.js"></script>
</html>