-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.html
411 lines (411 loc) · 37.1 KB
/
main.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
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
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
<!DOCTYPE html>
<html>
<head>
<title>Dominion Black Market Card Selector</title>
<link href="w3.css" rel="stylesheet" type="text/css">
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body>
<script src="mainscript.js">
</script>
<div id="choose_sets">
<h1>Select the sets you want, and click Generate Deck.</h1>
<form action="" id="sets" method="get" name="sets">
<h2 style="cursor:help" title="Sets are sold either as stand-alone sets or as expansions.">Sets</h2><input class="dominion_sets" name="base" type="checkbox" value="Base" style="cursor:help" title="The cards in the Base Set that are in the first and second editions">Base Set<br>
<input class="dominion_sets" name="base1" type="checkbox" value="Base1" style="cursor:help" title="The cards in the Base Set that are only in the first edition">1st edition exclusive cards<br>
<input class="dominion_sets" name="base2" type="checkbox" value="Base2" style="cursor:help" title="The cards in the Base Set that are only in the second edition">2st edition exclusive cards<br>
<input class="dominion_sets" name="intrigue" type="checkbox" value="Intrigue" style="cursor:help" title="The cards in Intrigue that are in the first and second editions">Intrigue<br>
<input class="dominion_sets" name="intrigue1" type="checkbox" value="Intrigue1" style="cursor:help" title="The cards in Intrigue that are only in the first edition">1st edition exclusive cards<br>
<input class="dominion_sets" name="intrigue2" type="checkbox" value="Intrigue2" style="cursor:help" title="The cards in Intrigue that are only in the second edition">2st edition exclusive cards<br>
<input class="dominion_sets" name="seaside" type="checkbox" value="Seaside" style="cursor:help" title="All of the cards in Seaside">Seaside<br>
<input class="dominion_sets" name="alchemy" type="checkbox" value="Alchemy" style="cursor:help" title="All of the cards in Alchemy">Alchemy<br>
<input class="dominion_sets" name="prosperity" type="checkbox" value="Prosperity" style="cursor:help" title="All of the cards in Prosperity">Prosperity<br>
<input class="dominion_sets" name="cornucopia" type="checkbox" value="Cornucopia" style="cursor:help" title="All of the cards in Cornucopia">Cornucopia<br>
<input class="dominion_sets" name="hinterlands" type="checkbox" value="Hinterlands" style="cursor:help" title="All of the cards in Hinterlands">Hinterlands<br>
<input class="dominion_sets" name="dark" type="checkbox" value="Dark" style="cursor:help" title="All of the cards in Dark Ages">Dark Ages<br>
<input class="dominion_sets" name="guilds" type="checkbox" value="Guilds" style="cursor:help" title="All of the cards in Guilds">Guilds<br>
<input class="dominion_sets" name="adventures" type="checkbox" value="Adventures" style="cursor:help" title="All of the cards in Adventures">Adventures<br>
<input class="dominion_sets" name="empires" type="checkbox" value="Empires" style="cursor:help" title="All of the cards in Empires">Empires<br>
<h2 style="cursor:help" title="Promo cards are given away at special events, or sold later, at a higher price. They only contain a single card.">Promo Cards</h2><input class="dominion_sets" name="envoy" type="checkbox" value="Envoy" style="cursor:help" title="The Envoy promo card">Envoy<br>
<input class="dominion_sets" name="walled" type="checkbox" value="Walled" style="cursor:help" title="The Walled Village promo card">Walled Village<br>
<input class="dominion_sets" name="governor" type="checkbox" value="Governor" style="cursor:help" title="The Governor promo card">Governor<br>
<input class="dominion_sets" name="stash" type="checkbox" value="Stash" style="cursor:help" title="The Stash promo card">Stash<br>
<input class="dominion_sets" name="prince" type="checkbox" value="Prince" style="cursor:help" title="The Prince promo card">Prince<br>
<input class="dominion_sets" name="sauna" type="checkbox" value="Sauna" style="cursor:help" title="The Sauna promo card">Sauna<br>
<div class="w3-btn-group">
<input class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" name="all" onclick="checkAll('sets',true);" type="button" value="Select All"> <input class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" name="all" onclick="checkAll('sets',false);" type="button" value="Unselect All"> <button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" onclick="generate()" type="button">Generate Deck</button>
</div>
</form>
</div>
<div id="cards_to_exclude" style="display: none;">
<h1>Which cards do you NOT want in the black market deck(already in game)</h1>
<form action="" id="form-cards-to-exclude" method="get" name="excludedcards">
<div id="base-cards-to-exclude" style="display: none;">
<h2>Base Set</h2><input name="bureaucrat" type="checkbox" value="exclude">Bureaucrat<br>
<input name="cellar" type="checkbox" value="exclude">Cellar<br>
<input name="chapel" type="checkbox" value="exclude">Chapel<br>
<input name="councilroom" type="checkbox" value="exclude">Council Room<br>
<input name="festival" type="checkbox" value="exclude">Festival<br>
<input name="gardens" type="checkbox" value="exclude">Gardens<br>
<input name="laboratory" type="checkbox" value="exclude">Laboratory<br>
<input name="library" type="checkbox" value="exclude">Library<br>
<input name="market" type="checkbox" value="exclude">Market<br>
<input name="militia" type="checkbox" value="exclude">Militia<br>
<input name="mine" type="checkbox" value="exclude">Mine<br>
<input name="moat" type="checkbox" value="exclude">Moat<br>
<input name="moneylender" type="checkbox" value="exclude">Moneylender<br>
<input name="remodel" type="checkbox" value="exclude">Remodel<br>
<input name="smithy" type="checkbox" value="exclude">Smithy<br>
<input name="throneroom" type="checkbox" value="exclude">Throne Room<br>
<input name="village" type="checkbox" value="exclude">Village<br>
<input name="witch" type="checkbox" value="exclude">Witch<br>
<input name="workshop" type="checkbox" value="exclude">Workshop<br>
</div>
<div id="base1-cards-to-exclude" style="display: none;">
<input name="chancellor" type="checkbox" value="exclude">Chancellor<br>
<input name="woodcutter" type="checkbox" value="exclude">Woodcutter<br>
<input name="feast" type="checkbox" value="exclude">Feast<br>
<input name="spy" type="checkbox" value="exclude">Spy<br>
<input name="thief" type="checkbox" value="exclude">Thief<br>
<input name="adventurer" type="checkbox" value="exclude">Adventurer<br>
</div>
<div id="base2-cards-to-exclude" style="display: none;">
<input name="artisan" type="checkbox" value="exclude">Artisan<br>
<input name="bandit" type="checkbox" value="exclude">Bandit<br>
<input name="harbinger" type="checkbox" value="exclude">Harbinger<br>
<input name="merchant" type="checkbox" value="exclude">Merchant<br>
<input name="poacher" type="checkbox" value="exclude">Poacher<br>
<input name="sentry" type="checkbox" value="exclude">Sentry<br>
<input name="vassal" type="checkbox" value="exclude">Vassal<br>
</div>
<div id="intrigue-cards-to-exclude" style="display: none;">
<h2>Intrigue</h2><input name="baron" type="checkbox" value="exclude">Baron<br>
<input name="bridge" type="checkbox" value="exclude">Bridge<br>
<input name="conspirator" type="checkbox" value="exclude">Conspirator<br>
<input name="courtyard" type="checkbox" value="exclude">Courtyard<br>
<input name="duke" type="checkbox" value="exclude">Duke<br>
<input name="harem" type="checkbox" value="exclude">Harem<br>
<input name="ironworks" type="checkbox" value="exclude">Ironworks<br>
<input name="masquerade" type="checkbox" value="exclude">Masquerade<br>
<input name="miningvillage" type="checkbox" value="exclude">Mining Village<br>
<input name="minion" type="checkbox" value="exclude">Minion<br>
<input name="nobles" type="checkbox" value="exclude">Nobles<br>
<input name="pawn" type="checkbox" value="exclude">Pawn<br>
<input name="shantytown" type="checkbox" value="exclude">Shanty Town<br>
<input name="steward" type="checkbox" value="exclude">Steward<br>
<input name="swindler" type="checkbox" value="exclude">Swindler<br>
<input name="torturer" type="checkbox" value="exclude">Torturer<br>
<input name="tradingpost" type="checkbox" value="exclude">Trading Post<br>
<input name="upgrade" type="checkbox" value="exclude">Upgrade<br>
<input name="wishingwell" type="checkbox" value="exclude">Wishing Well<br>
</div>
<div id="intrigue1-cards-to-exclude" style="display: none;">
<input name="secretchamber" type="checkbox" value="exclude">Secret Chamber<br>
<input name="greathall" type="checkbox" value="exclude">Great Hall<br>
<input name="coppersmith" type="checkbox" value="exclude">Coppersmith<br>
<input name="scout" type="checkbox" value="exclude">Scout<br>
<input name="saboteur" type="checkbox" value="exclude">Saboteur<br>
<input name="tribute" type="checkbox" value="exclude">Tribute<br>
</div>
<div id="intrigue2-cards-to-exclude" style="display: none;">
<input name="courtier" type="checkbox" value="exclude">Courtier<br>
<input name="diplomat" type="checkbox" value="exclude">Diplomat<br>
<input name="lurker" type="checkbox" value="exclude">Lurker<br>
<input name="mill" type="checkbox" value="exclude">Mill<br>
<input name="patrol" type="checkbox" value="exclude">Patrol<br>
<input name="replace" type="checkbox" value="exclude">Replace<br>
<input name="secretpassage" type="checkbox" value="exclude">Secret Passage<br>
</div>
<div id="seaside-cards-to-exclude" style="display: none;">
<h2>Seaside</h2><input name="ambassador" type="checkbox" value="exclude">Ambassador<br>
<input name="bazaar" type="checkbox" value="exclude">Bazaar<br>
<input name="caravan" type="checkbox" value="exclude">Caravan<br>
<input name="cutpurse" type="checkbox" value="exclude">Cutpurse<br>
<input name="embargo" type="checkbox" value="exclude">Embargo<br>
<input name="explorer" type="checkbox" value="exclude">Explorer<br>
<input name="fishingvillage" type="checkbox" value="exclude">Fishing Village<br>
<input name="ghostship" type="checkbox" value="exclude">Ghost Ship<br>
<input name="haven" type="checkbox" value="exclude">Haven<br>
<input name="island" type="checkbox" value="exclude">Island<br>
<input name="lighthouse" type="checkbox" value="exclude">Lighthouse<br>
<input name="lookout" type="checkbox" value="exclude">Lookout<br>
<input name="merchantship" type="checkbox" value="exclude">Merchant Ship<br>
<input name="nativevillage" type="checkbox" value="exclude">Native Village<br>
<input name="navigator" type="checkbox" value="exclude">Navigator<br>
<input name="outpost" type="checkbox" value="exclude">Outpost<br>
<input name="pearldiver" type="checkbox" value="exclude">Pearl Diver<br>
<input name="pirateship" type="checkbox" value="exclude">Pirate Ship<br>
<input name="salvager" type="checkbox" value="exclude">Salvager<br>
<input name="seahag" type="checkbox" value="exclude">Sea Hag<br>
<input name="smugglers" type="checkbox" value="exclude">Smugglers<br>
<input name="tactician" type="checkbox" value="exclude">Tactician<br>
<input name="treasuremap" type="checkbox" value="exclude">Treasure Map<br>
<input name="treasury" type="checkbox" value="exclude">Treasury<br>
<input name="warehouse" type="checkbox" value="exclude">Warehouse<br>
<input name="wharf" type="checkbox" value="exclude">Wharf<br>
</div>
<div id="alchemy-cards-to-exclude" style="display: none;">
<h2>Alchemy</h2><input name="alchemist" type="checkbox" value="exclude">Alchemist<br>
<input name="apothecary" type="checkbox" value="exclude">Apothecary<br>
<input name="apprentice" type="checkbox" value="exclude">Apprentice<br>
<input name="familiar" type="checkbox" value="exclude">Familiar<br>
<input name="golem" type="checkbox" value="exclude">Golem<br>
<input name="herbalist" type="checkbox" value="exclude">Herbalist<br>
<input name="philosophersstone" type="checkbox" value="exclude">Philosophers Stone<br>
<input name="possession" type="checkbox" value="exclude">Possession<br>
<input name="scryingpool" type="checkbox" value="exclude">Scrying Pool<br>
<input name="transmute" type="checkbox" value="exclude">Transmute<br>
<input name="university" type="checkbox" value="exclude">University<br>
<input name="vineyard" type="checkbox" value="exclude">Vineyard<br>
</div>
<div id="prosperity-cards-to-exclude" style="display: none;">
<h2>Prosperity</h2><input name="bank" type="checkbox" value="exclude">Bank<br>
<input name="bishop" type="checkbox" value="exclude">Bishop<br>
<input name="city" type="checkbox" value="exclude">City<br>
<input name="contraband" type="checkbox" value="exclude">Contraband<br>
<input name="countinghouse" type="checkbox" value="exclude">Counting House<br>
<input name="expand" type="checkbox" value="exclude">Expand<br>
<input name="forge" type="checkbox" value="exclude">Forge<br>
<input name="goons" type="checkbox" value="exclude">Goons<br>
<input name="grandmarket" type="checkbox" value="exclude">Grand Market<br>
<input name="hoard" type="checkbox" value="exclude">Hoard<br>
<input name="kingscourt" type="checkbox" value="exclude">King's Court<br>
<input name="loan" type="checkbox" value="exclude">Loan<br>
<input name="mint" type="checkbox" value="exclude">Mint<br>
<input name="monument" type="checkbox" value="exclude">Monument<br>
<input name="mountebank" type="checkbox" value="exclude">Mountebank<br>
<input name="peddler" type="checkbox" value="exclude">Peddler<br>
<input name="quarry" type="checkbox" value="exclude">Quarry<br>
<input name="rabble" type="checkbox" value="exclude">Rabble<br>
<input name="royalseal" type="checkbox" value="exclude">Royal Seal<br>
<input name="talisman" type="checkbox" value="exclude">Talisman<br>
<input name="traderoute" type="checkbox" value="exclude">Trade Route<br>
<input name="vault" type="checkbox" value="exclude">Vault<br>
<input name="venture" type="checkbox" value="exclude">Venture<br>
<input name="watchtower" type="checkbox" value="exclude">Watchtower<br>
<input name="workersvillage" type="checkbox" value="exclude">Workers Village<br>
</div>
<div id="cornucopia-cards-to-exclude" style="display: none;">
<h2>Cornucopia</h2><input name="fairgrounds" type="checkbox" value="exclude">Fairgrounds<br>
<input name="farmingvillage" type="checkbox" value="exclude">Farming Village<br>
<input name="fortuneteller" type="checkbox" value="exclude">Fortune Teller<br>
<input name="hamlet" type="checkbox" value="exclude">Hamlet<br>
<input name="harvest" type="checkbox" value="exclude">Harvest<br>
<input name="hornofplenty" type="checkbox" value="exclude">Horn of Plenty<br>
<input name="horsetraders" type="checkbox" value="exclude">Horse Traders<br>
<input name="huntingparty" type="checkbox" value="exclude">Hunting Party<br>
<input name="jester" type="checkbox" value="exclude">Jester<br>
<input name="menagerie" type="checkbox" value="exclude">Menagerie<br>
<input name="remake" type="checkbox" value="exclude">Remake<br>
<input name="tournament" type="checkbox" value="exclude">Tournament<br>
<input name="youngwitch" type="checkbox" value="exclude">Young Witch<br>
</div>
<div id="hinterlands-cards-to-exclude" style="display: none;">
<h2>Hinterlands</h2><input name="bordervillage" type="checkbox" value="exclude">Border Village<br>
<input name="cache" type="checkbox" value="exclude">Cache<br>
<input name="cartographer" type="checkbox" value="exclude">Cartographer<br>
<input name="crossroads" type="checkbox" value="exclude">Crossroads<br>
<input name="develop" type="checkbox" value="exclude">Develop<br>
<input name="duchess" type="checkbox" value="exclude">Duchess<br>
<input name="embassy" type="checkbox" value="exclude">Embassy<br>
<input name="farmland" type="checkbox" value="exclude">Farmland<br>
<input name="foolsgold" type="checkbox" value="exclude">Fools Gold<br>
<input name="haggler" type="checkbox" value="exclude">Haggler<br>
<input name="highway" type="checkbox" value="exclude">Highway<br>
<input name="illgottengains" type="checkbox" value="exclude">Ill Gotten Gains<br>
<input name="inn" type="checkbox" value="exclude">Inn<br>
<input name="jackofalltrades" type="checkbox" value="exclude">Jack of all Trades<br>
<input name="mandarin" type="checkbox" value="exclude">Mandarin<br>
<input name="margrave" type="checkbox" value="exclude">Margrave<br>
<input name="noblebrigand" type="checkbox" value="exclude">Noble Brigand<br>
<input name="nomadcamp" type="checkbox" value="exclude">Nomad Camp<br>
<input name="oasis" type="checkbox" value="exclude">Oasis<br>
<input name="oracle" type="checkbox" value="exclude">Oracle<br>
<input name="scheme" type="checkbox" value="exclude">Scheme<br>
<input name="silkroad" type="checkbox" value="exclude">Silk Road<br>
<input name="spicemerchant" type="checkbox" value="exclude">Spice Merchant<br>
<input name="stables" type="checkbox" value="exclude">Stables<br>
<input name="trader" type="checkbox" value="exclude">Trader<br>
<input name="tunnel" type="checkbox" value="exclude">Tunnel<br>
</div>
<div id="dark-cards-to-exclude" style="display: none;">
<h2>Dark Ages</h2><input name="altar" type="checkbox" value="exclude">Altar<br>
<input name="armory" type="checkbox" value="exclude">Armory<br>
<input name="banditcamp" type="checkbox" value="exclude">Bandit Camp<br>
<input name="bandofmisfits" type="checkbox" value="exclude">Band of Misfits<br>
<input name="beggar" type="checkbox" value="exclude">Beggar<br>
<input name="catacombs" type="checkbox" value="exclude">Catacombs<br>
<input name="count" type="checkbox" value="exclude">Count<br>
<input name="counterfeit" type="checkbox" value="exclude">Counterfeit<br>
<input name="cultist" type="checkbox" value="exclude">Cultist<br>
<input name="deathcart" type="checkbox" value="exclude">Death Cart<br>
<input name="feodum" type="checkbox" value="exclude">Feodum<br>
<input name="forager" type="checkbox" value="exclude">Forager<br>
<input name="fortress" type="checkbox" value="exclude">Fortress<br>
<input name="graverobber" type="checkbox" value="exclude">Grave Robber<br>
<input name="hermit" type="checkbox" value="exclude">Hermit<br>
<input name="huntinggrounds" type="checkbox" value="exclude">Hunting Grounds<br>
<input name="ironmonger" type="checkbox" value="exclude">Iron Monger<br>
<input name="junkdealer" type="checkbox" value="exclude">Junk Dealer<br>
<input name="knights" type="checkbox" value="exclude">Knights<br>
<input name="marauder" type="checkbox" value="exclude">Marauder<br>
<input name="marketsquare" type="checkbox" value="exclude">Market Square<br>
<input name="mystic" type="checkbox" value="exclude">Mystic<br>
<input name="pillage" type="checkbox" value="exclude">Pillage<br>
<input name="poorhouse" type="checkbox" value="exclude">Poor House<br>
<input name="procession" type="checkbox" value="exclude">Procession<br>
<input name="rats" type="checkbox" value="exclude">Rats<br>
<input name="rebuild" type="checkbox" value="exclude">Rebuild<br>
<input name="rogue" type="checkbox" value="exclude">Rogue<br>
<input name="sage" type="checkbox" value="exclude">Sage<br>
<input name="scavenger" type="checkbox" value="exclude">Scavenger<br>
<input name="squire" type="checkbox" value="exclude">Squire<br>
<input name="storeroom" type="checkbox" value="exclude">Storeroom<br>
<input name="urchin" type="checkbox" value="exclude">Urchin<br>
<input name="vagrant" type="checkbox" value="exclude">Vagrant<br>
<input name="wanderingminstrel" type="checkbox" value="exclude">Wandering Minstrel<br>
</div>
<div id="guilds-cards-to-exclude" style="display: none;">
<h2>Guilds</h2><input name="advisor" type="checkbox" value="exclude">Advisor<br>
<input name="baker" type="checkbox" value="exclude">Baker<br>
<input name="butcher" type="checkbox" value="exclude">Butcher<br>
<input name="candlestickmaker" type="checkbox" value="exclude">Candlestick Maker<br>
<input name="doctor" type="checkbox" value="exclude">Doctor<br>
<input name="herald" type="checkbox" value="exclude">Herald<br>
<input name="journeyman" type="checkbox" value="exclude">Journeyman<br>
<input name="masterpiece" type="checkbox" value="exclude">Masterpiece<br>
<input name="merchantguild" type="checkbox" value="exclude">Merchant Guild<br>
<input name="plaza" type="checkbox" value="exclude">Plaza<br>
<input name="soothsayer" type="checkbox" value="exclude">Soothsayer<br>
<input name="stonemason" type="checkbox" value="exclude">Stonemason<br>
<input name="taxman" type="checkbox" value="exclude">Taxman<br>
</div>
<div id="adventures-cards-to-exclude" style="display: none;">
<h2>Adventures</h2><input name="amulet" type="checkbox" value="exclude">Amulet<br>
<input name="artificer" type="checkbox" value="exclude">Artificer<br>
<input name="bridgetroll" type="checkbox" value="exclude">Bridge Troll<br>
<input name="caravanguard" type="checkbox" value="exclude">Caravan Guard<br>
<input name="coinoftherealm" type="checkbox" value="exclude">Coin of the Realm<br>
<input name="distantlands" type="checkbox" value="exclude">Distant Lands<br>
<input name="dungeon" type="checkbox" value="exclude">Dungeon<br>
<input name="duplicate" type="checkbox" value="exclude">Duplicate<br>
<input name="gear" type="checkbox" value="exclude">Gear<br>
<input name="giant" type="checkbox" value="exclude">Giant<br>
<input name="guide" type="checkbox" value="exclude">Guide<br>
<input name="hauntedwoods" type="checkbox" value="exclude">Haunted Woods<br>
<input name="hireling" type="checkbox" value="exclude">Hireling<br>
<input name="lostcity" type="checkbox" value="exclude">Lost City<br>
<input name="magpie" type="checkbox" value="exclude">Magpie<br>
<input name="messenger" type="checkbox" value="exclude">Messenger<br>
<input name="miser" type="checkbox" value="exclude">Miser<br>
<input name="page" type="checkbox" value="exclude">Page<br>
<input name="peasant" type="checkbox" value="exclude">Peasant<br>
<input name="port" type="checkbox" value="exclude">Port<br>
<input name="ranger" type="checkbox" value="exclude">Ranger<br>
<input name="ratcatcher" type="checkbox" value="exclude">Rat Catcher<br>
<input name="raze" type="checkbox" value="exclude">Raze<br>
<input name="relic" type="checkbox" value="exclude">Relic<br>
<input name="royalcarriage" type="checkbox" value="exclude">Royal Carriage<br>
<input name="storyteller" type="checkbox" value="exclude">Story Teller<br>
<input name="swamphag" type="checkbox" value="exclude">Swamp Hag<br>
<input name="transmogrify" type="checkbox" value="exclude">Transmogrify<br>
<input name="treasuretrove" type="checkbox" value="exclude">Treasure Trove<br>
<input name="winemerchant" type="checkbox" value="exclude">Wine Merchant<br>
</div>
<div id="empires-cards-to-exclude" style="display: none;">
<h2>Empires</h2><input name="archive" type="checkbox" value="exclude">Archive<br>
<!--
see description in card dictionary as to why this can't get picked
<input type="checkbox" name="bustlingvillage" value="exclude">Bustling Village<br>
-->
<input name="capital" type="checkbox" value="exclude">Capital<br>
<input name="castles" type="checkbox" value="exclude">Castles<br>
<input name="catapult" type="checkbox" value="exclude">Catapult<br>
<input name="chariotrace" type="checkbox" value="exclude">Chariot Race<br>
<input name="charm" type="checkbox" value="exclude">Charm<br>
<input name="cityquarter" type="checkbox" value="exclude">City Quarter<br>
<input name="crown" type="checkbox" value="exclude">Crown<br>
<!--
<input type="checkbox" name="emporium" value="exclude">Emporium<br>
-->
<input name="encampment" type="checkbox" value="exclude">Encampment<br>
<input name="enchantress" type="checkbox" value="exclude">Enchantress<br>
<input name="engineer" type="checkbox" value="exclude">Engineer<br>
<input name="farmersmarket" type="checkbox" value="exclude">Farmers Market<br>
<!--
<input type="checkbox" name="fortune" value="exclude">Fortune<br>
-->
<input name="forum" type="checkbox" value="exclude">Forum<br>
<input name="gladiator" type="checkbox" value="exclude">Gladiator<br>
<input name="groundskeeper" type="checkbox" value="exclude">Grounds Keeper<br>
<input name="legionary" type="checkbox" value="exclude">Legionary<br>
<input name="overlord" type="checkbox" value="exclude">Overlord<br>
<input name="patrician" type="checkbox" value="exclude">Patrician<br>
<!--I HATE SPLIT CARDS!! THEYRE SO ANNOYING
<input type="checkbox" name="plunder" value="exclude">Plunder<br>-->
<!--
<input type="checkbox" name="rocks" value="exclude">Rocks<br>
-->
<input name="royalblacksmith" type="checkbox" value="exclude">Royal Blacksmith<br>
<input name="sacrifice" type="checkbox" value="exclude">Sacrifice<br>
<input name="settlers" type="checkbox" value="exclude">Settlers<br>
<input name="temple" type="checkbox" value="exclude">Temple<br>
<input name="villa" type="checkbox" value="exclude">Villa<br>
<input name="wildhunt" type="checkbox" value="exclude">Wild Hunt<br>
</div>
<div id="promo-cards-to-exclude" style="display: none;">
<h2>Promo Cards</h2><span id="envoy-cards-to-exclude" style="display: none;"><input id="envoy-cards-to-exclude" name="envoy" type="checkbox" value="exclude">Envoy<br></span> <span id="governor-cards-to-exclude" style="display: none;"><input id="governor-cards-to-exclude" name="governor" type="checkbox" value="exclude">Governor<br></span> <span id="prince-cards-to-exclude" style="display: none;"><input id="prince-cards-to-exclude" name="prince" type="checkbox" value="exclude">Prince<br></span> <span id="stash-cards-to-exclude" style="display: none;"><input id="stash-cards-to-exclude" name="stash" type="checkbox" value="exclude">Stash<br></span> <span id="walledvilage-cards-to-exclude" style="display: none;"><input id="walledvilage-cards-to-exclude" name="walledvillage" type="checkbox" value="exclude">Walled Village<br></span> <span id="sauna-cards-to-exclude" style="display: none;"><input id="sauna-cards-to-exclude" name="sauna" type="checkbox" value="exclude">Sauna<br></span>
</div><!--FOR FUTURE SETS:
<div id="setname-cards-to-exclude" style="display: none;">p
<h2></h2>
<input type="checkbox" name="" value="exclude"><br>
</div>
-->
<button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" onclick="exclude_cards()" type="button">Continue</button>
</form>
</div>
<div id="deck_select" style="display:none;">
<h1 id="cards_left_h1">Your deck has been completed</h1>
<div id="cards_selected">
<div id="cardmenu">
<!--non desktop version:-->
<div id="cards_selected">
<span id="card_1_image"></span> <span id="card_2_image"></span> <span id="card_3_image"></span>
<div class="w3-btn-group">
<button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" id="buy1" onclick="buy(1)" style="display: none;" type="button">Buy card <span id="card_1_name"></span></button> <button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" id="buy2" onclick="buy(2)" style="display: none;" type="button">Buy card <span id="card_2_name"></span></button> <button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" id="buy3" onclick="buy(3)" style="display: none;" type="button">Buy card <span id="card_3_name"></span></button> <button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" id="buynone" onclick="discardall()" style="display: none;" type="button">Discard All</button>
</div>
</div>
</div>
</div><button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" id="draw_button" onclick="draw_cards()" type="button">Draw Cards</button>
<div id="rememberto">
<span id="topoflist">Remember to:</span>
<ul>
<li id="alcpotrem">Put Potions in the Supply</li>
<li id="coinrem">Get the Coin tokens out</li>
<li id="spoilsrem">Get the Spoils pile out</li>
<li id="vicrem">Get the Victory tokens out</li>
<li id="m1crem">Get the -1 Coin tokens out and give one to each player</li>
<li id="debtrem">Get the Debt tokens out</li>
<li id="tavern">Get the Tavern mats out and give one to each player</li>
<li id="ruins">Get the Ruins pile out</li>
<li id="emb">Get the Embargo tokens out</li>
<li id="jtr">Get the Journey tokens out and give one to each player</li>
<li id="hmr">Get the Madman pile out</li>
<li id="nvmr">Get the Native Village mats out and give one to each player</li>
<li id="psmr">Get the Pirate Ship mats out and give one to each player</li>
<li id="relicrm">Get the -1 Card tokens out and give one to each player</li>
<li id="prizes">Get the Prize pile out</li>
<li id="trdr">Get the Trade Route mat out</li>
<li id="urme">Get the Mercenary pile out</li>
<li>Get the Curse pile out</li>
</ul>
</div>
</div>
<div id="done" style="display: none;">
<h1>The Black Market Deck is Empty!</h1><br>
<button class="w3-btn w3-black w3-hover-red w3-round-xxlarge w3-border-black w3-text-shadow" onclick="location='';">Make another deck</button>
</div><!--
01001000 01100101 01101100 01101100 01101111 00101110 00100000 00100000 01011001 01101111 01110101 00100111 01110010 01100101 00100000 01101100 01101111 01101111 01101011 01101001 01101110 01100111 00100000 01100001 01110100 00100000 01110100 01101000 01100101 00100000 01110011 01101111 01110101 01110010 01100011 01100101 00100000 01100011 01101111 01100100 01100101 00101110 00100000 00100000 01010100 01101000 01100001 01110100 00100111 01110011 00100000 01100011 01101111 01101111 01101100 00101110 00100000 00100000 01001001 01100110 00100000 01111001 01101111 01110101 00100111 01110010 01100101 00100000 01101100 01101111 01101111 01101011 01101001 01101110 01100111 00100000 01110100 01101111 00100000 01100011 01101111 01101110 01110100 01100001 01100011 01110100 00100000 01101101 01100101 00101100 00100000 01100100 01101111 00100000 01110011 01101111 00100000 01100001 01110100 00100000 01101101 01101111 01110011 01110100 01100100 01101001 01100111 01101001 01110100 01110011 01101111 01100110 01110000 01101001 01000000 01100111 01101101 01100001 01101001 01101100 00101110 01100011 01101111 01101101 00101110 00100000 01001111 01110100 01101000 01100101 01110010 01110111 01101001 01110011 01100101 00101100 00100000 01111001 01101111 01110101 00100000 01110011 01101000 01101111 01110101 01101100 01100100 00100000 01101011 01101110 01101111 01110111 00100000 01110100 01101000 01100001 01110100 00100000 01110000 01110010 01101111 01100111 01110010 01100001 01101101 01101101 01100101 01110010 01110011 00100000 01100001 01110010 01100101 00100000 01110010 01100101 01100001 01101100 00100000 01110000 01100101 01101111 01110000 01101100 01100101 00101100 00100000 01100001 01101110 01100100 00100000 01110100 01101000 01100001 01110100 00100111 01110011 00100000 01110111 01101000 01111001 00100000 01001001 00100111 01101101 00100000 01100010 01110101 01101001 01101100 01100100 01101001 01101110 01100111 00100000 01110100 01101000 01101001 01110011 00100000 01101001 01101110 01110100 01101111 00100000 01110100 01101000 01101001 01110011 00100000 01110000 01110010 01101111 01100111 01110010 01100001 01101101 00101110 00100000 00100000 01010111 01100101 00100000 01100101 01111000 01101001 01110011 01110100 00100000 01110100 01101111 01101111 00101110 00100000 00100000 01001001 01100110 00100000 01110100 01101000 01100101 00100000 01100011 01101111 01100100 01100101 00100000 01100100 01101111 01100101 01110011 01101110 00100111 01110100 00100000 01110111 01101111 01110010 01101011 00101100 00100000 01111001 01101111 01110101 00100000 01000011 01000001 01001110 00100000 01100011 01101111 01101110 01110100 01100001 01100011 01110100 00100000 01101101 01100101 00101100 00100000 01100001 01101110 01100100 00100000 01001001 00100000 01010111 01001001 01001100 01001100 00100000 01101000 01100101 01101100 01110000 00100000 01111001 01101111 01110101 00101110 00001101 00001010 00001101 00001010 01010100 01101000 01100001 01101110 01101011 01110011
-->
</body>
</html>