This repository was archived by the owner on Feb 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMario Odyssey Costumes.html
1876 lines (1847 loc) · 58.1 KB
/
Mario Odyssey Costumes.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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="Labs.png">
<title>LAB's Games and More</title>
<style>
html{
background-color: blue
}
p{
font-weight = bold;
border-radius: 15px;
border-style: solid;
color:black;
border: solid;
padding: 20px;
background-color: red;
}
p a{
border-right-color: black;
color:black;
text-decoration: none;
font-weight:100;
font-family: sans-serif;
border-right:2px solid;
padding: 8px;
font-size: 20px
}
p a.selected{
color: gray;
border-right-color: black;
}
header {
background-color: #3bff00;
padding: 1%;
border: 2px solid;
border-radius: 10px;
}
body {
}
body nav {
border: 2px solid;
background-color: #a89c92;
padding-left: 8px;
border-radius: 10px;
}
body nav h7{
text-indent ;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Made with Thimble</title>
<link rel="stylesheet" href="style.css">
</head>
<header>
<h2> <sup>LAB's</sup> Games and more </h2>
<p>
<a href="index.html">Home</a>
<a href="Gamepage.html">Games</a>
<a href="index-6.html">Game Dev</a>
<a href="other pages.html">Other Pages</a>
<a href="ChatRoom.html">Chat Room</a>
</p>
</header>
<body>
<nav>
<h1>Mario Odyssey Costume</h1>
<table>
<tr>
<th>Outfit</th>
<th>Cost</th>
<th>Kingdom</th>
<th>Description</th>
</tr>
<tr>
<td>Mario's Suit</td>
<td>Free</td>
<td>Cap</td>
<td>This tried-and-true outfit has weathered many adventures.</td>
</tr>
<tr>
<td>Black Tux </td>
<td>10 Regional Coins</td>
<td>Cap</td>
<td>Bonneton's Crazy Cap shop is famous for these impeccably tailored outfits.</td>
</tr>
<tr>
<td>Caveman Outfit</td>
<td>10 Regional Coins</td>
<td>Cascade</td>
<td>Early adventurers wore these outfits for maximum freedom of movement, if not maximum warmth.</td>
</tr>
<tr>
<td>Poncho</td>
<td>10 Regoinal Coins</td>
<td>Sand</td>
<td>Traditional folk dress of the Tostarena region. Keeps the sun off and breezes on.</td>
</tr>
<tr>
<td>Cowboy Outfit</td>
<td>25 Regoinal Coins</td>
<td>Sand</td>
<td>Old-fashioned duds with a frontier feel. Gunslinging and cow-punching optional.</td>
</tr>
<tr>
<td>Swimwear</td>
<td>10 Regional Coins</td>
<td>Lake</td>
<td>The floaty ring does not actually float - it's just an accent on the outfit.</td>
</tr>
<tr>
<td>Explorer Outfit</td>
<td>10 Regional Coins</td>
<td>Wooded</td>
<td>Clothes that keep you comfortable even in the deepest heart of the wilderness.</td>
</tr>
<tr>
<td>Scientist Outfit</td>
<td>25 regional coins</td>
<td>Wooded</td>
<td>It's a scientific fact that nothing says "scientist" like a lab coat.</td>
</tr>
<tr>
<td>Aviator Outfit</td>
<td>10 Regional Coins</td>
<td>Lost</td>
<td>This jacket is how you let people know you're a pilot when you're not in the cockpit.</td>
</tr>
<tr>
<td>Builder Outfit</td>
<td>10 Regional Coins</td>
<td>Metro</td>
<td>The perfect outfit whether you're constructing or inspecting the construction work of others.</td>
</tr>
<tr>
<td>Golf Outfit</td>
<td>25 Regionsl Coins</td>
<td>Metro</td>
<td>"What?! Wait, let me turn down my outfit so I can hear you!"</td>
</tr>
<tr>
<td>Snow Suit</td>
<td>10 Regional Coins</td>
<td>Snow</td>
<td>After decades of ice levels, FINALLY a good, warm jacket.</td>
</tr>
<tr>
<td>Resort Outfit</td>
<td>10 Regional Coins</td>
<td>Seaside</td>
<td>This outfit lets everyone know you take your relaxing seriously.</td>
</tr>
<tr>
<td>Sailor Suit</td>
<td>25 Regional Coins</td>
<td>Seaside</td>
<td>Of all uniforms, the one that is most likely to get really, really wet.</td>
</tr>
<tr>
<td>Chef Suit</td>
<td>10 Regional Coins</td>
<td>Luncheon</td>
<td>Red scarves are a staple of fashion on Mount Volbono.</td>
</tr>
<tr>
<td>Painter Outfit</td>
<td>25 Regional Coins</td>
<td>Luncheon</td>
<td>Just the outfit you would expect to see on a painter. Prestained for your convenience.</td>
</tr>
<tr>
<td>Samurai Armor</td>
<td>10 Regional Coins</td>
<td>Bowser</td>
<td>The samurai basically walked around wearing works of art.</td>
</tr>
<tr>
<td>Happi Outfit</td>
<td>25 Regional Coins</td>
<td>Bowser</td>
<td>Traditional clothing designed to be easy to move around in at a festival.</td>
</tr>
<tr>
<td>Space Suit</td>
<td>10 Regional Coins</td>
<td>Moon</td>
<td>The preferred outfit for steps and leaps of any size.</td>
</tr>
<tr>
<td>Mario 64 Suit</td>
<td>20 Regional Coins</td>
<td>Mushroom</td>
<td>When you just want to wrap yourself in nostalgia.</td>
</tr>
<tr>
<td>Employee Uniform</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Show your Crazy Cap brand loyalty with this striking outfit!
</td>
</tr>
<tr>
<td>Boxer Shorts</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>Comfortable, breezy boxers in a vibrant, mushroom-like pattern.</td>
</tr>
<tr>
<td>Fashionable Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>I'm not clashing, YOU'RE clashing!</td>
</tr>
<tr>
<td>Mechanic Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>An outfit seemingly doomed to get stained in motor oil.</td>
</tr>
<tr>
<td>Black Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>You can wear this outfit just about anywhere - it always looks good.</td>
</tr>
<tr>
<td>Pirate Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Whether plundering cargo or burying treasure, you're gonna need an extremely fancy coat.</td>
</tr>
<tr>
<td>Clown Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Roomy enough for all your tumbling needs, colorful enough to be seen from space.</td>
</tr>
<tr>
<td>Football Uniform</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Bright colors and big shoulder pads never go out of fashion.</td>
</tr>
<tr>
<td>Classic Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>The outfit is still loved by longtime fans. DK has never been a fan, though.</td>
</tr>
<tr>
<td>Skeleton Suit</td>
<td>9999 Gold Coins</td>
<td>Any</td>
<td>This skeleton costume uses cutting-edge, er, something to, um... Look, we're not sure how this works. But it's cool, right?</td>
</tr>
<tr>
<td>Luigi Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>A bright green version of an established classic. Green means "let's-a go"!</td>
</tr>
<tr>
<td>Doctor Outfit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>White coat worn by a doctor famous for fighting our most colorful viruses.</td>
</tr>
<tr>
<td>Waluigi Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>This outfit makes you want to lurk in the shadows, waiting for a turn in the spotlight.</td>
</tr>
<tr>
<td>Diddy Kong Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>A popular outfit among tail enthusiasts.</td>
</tr>
<tr>
<td>Wario Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>The kind of outfit that you want to wash at least once before you wear it.</td>
</tr>
<tr>
<td>Hakama</td>
<td>500 Gold Coins</td>
<td>Any</td>
<td>This traditional outfit has a nontraditional M monogram.</td>
</tr>
<tr>
<td>Bowser's Tux</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>For a terrifying, fire-breathing monster covered in spikes, Bowser sure cleans up nice.</td>
</tr>
<tr>
<td>Bridal Gown</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>A replica of Peach's wedding dress (though it did have to altered a bit to fit Mario's measurements).</td>
</tr>
<tr>
<td>Mario's Tux</td>
<td>Free</td>
<td>Moon</td>
<td>An exquisite coat with tails. WARNING: Do not engage in plumbing while wearing.</td>
</tr>
<tr>
<td>Gold Mario Suit</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>This outfit just goes all the way with the gold thing.</td>
</tr>
<tr>
<td>Metal Mario Suit</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>When you want to wrap yourself in nostalgia, and then in aluminum foil.</td>
</tr>
<tr>
<td>King's Outfit</td>
<td>Free</td>
<td>Dark Side</td>
<td>This majestic outfit was obtained in Rabbit Ridge.</td>
</tr>
<tr>
<td>Musician Outfit</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>The ideal suit for a jazzy retro-pastiche number, idealy performed at a simulated construction site.</td>
</tr>
<tr>
<td>Sunshine Outfit</td>
<td>3000 Gold Coins</td>
<td>Any</td>
<td>A tropical shirt appropiate for lazing on the beach, watching the dolphins, and perhaps some light graffiti cleanup.</td>
</tr>
<tr>
<td>Knight Armor</td>
<td>5000</td>
<td>Any</td>
<td>What the traditoinalist wears when rescuing a princess from a fire-breathing monster.</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<th>Hats and Caps</th>
<th>Cost</th>
<th>Kingdom</th>
<th>Description</th>
</tr>
<tr>
<td>Mario's Cap</td>
<td>Free</td>
<td>Cap</td>
<td>A red hat that has seen its fair share of adventures.</td>
</tr>
<tr>
<td>Captain's Hat</td>
<td>Free</td>
<td>Sand</td>
<td>Hat for the captain of the Odyssey, brimming with authority.</td>
</tr>
<tr>
<td>Black Top Hat</td>
<td>5 Regional Coins</td>
<td>Cap</td>
<td>This classy number is the best seller at Bonneton's Crazy Cap shop.</td>
</tr>
<tr>
<td>Caveman Headwear</td>
<td>5 Regional Coins</td>
<td>Cascade</td>
<td>Primitive plumbers fashioned these from the skulls of Parabones.</td>
</tr>
<tr>
<td>Sombrero</td>
<td>5 Regional Coins</td>
<td>Sand</td>
<td>Traditional Tostarenan hat. Keeps the sun out of your eyes and is just plain fun to wear.</td>
</tr>
<tr>
<td>Cowboy Hat</td>
<td>20 Regional Coins</td>
<td>Sand</td>
<td>A classic hat, perfectly suited for wearing as a you ride into sunsets.</td>
</tr>
<tr>
<td>Swim Goggles</td>
<td>5 Regional Coins</td>
<td>Lake</td>
<td>So fashionable you'll want to wear them on land.</td>
</tr>
<tr>
<td>Explorer Hat</td>
<td>5 Regional Coins</td>
<td>Wooded</td>
<td>Just because the territory is uncharted doesn't mean your head should be uncovered.</td>
</tr>
<tr>
<td>Scientist Visor</td>
<td>20 Regional Coins</td>
<td>Wooded</td>
<td>A strange piece of headwear that gives off a science-y vibe.</td>
</tr>
<tr>
<td>Aviator Cap</td>
<td>5 Regional Coins</td>
<td>Lost</td>
<td> Gotta keep those ears warm at 33,000 feet.</td>
</tr>
<tr>
<td>Builder Helmet</td>
<td>5 Regional Coins</td>
<td>Metro</td>
<td>Whether you're building or inspecting, you gotta keep your head safe.</td>
</tr>
<tr>
<td>Golf Cap</td>
<td>20 Gold Coins</td>
<td>Metro</td>
<td>You're not playing golf unless everyone is staring at your hat.</td>
</tr>
<tr>
<td>Snow Hood</td>
<td>5 Regional Coins</td>
<td>Snow</td>
<td>A down hood that keeps the cold from making you bitter.</td>
</tr>
<tr>
<td>Resort Hat</td>
<td>5 Regional Coins</td>
<td>Seaside</td>
<td>This hat is made for breathability, aiding in relaxation.</td>
</tr>
<tr>
<td>Sailor Hat</td>
<td>20 Regional Coins</td>
<td>Seaside</td>
<td>A hat respected the world over, especially in parts near water.</td>
</tr>
<tr>
<td>Chef Hat</td>
<td>5 Regional Coins</td>
<td>Luncheon</td>
<td>Anyone wearing one of these makes many friends on Mount Volbono.</td>
</tr>
<tr>
<td>Painter's Cap</td>
<td>20 Regional Coins</td>
<td>Luncheon</td>
<td>Is it really painting if you're not wearing one of these?</td>
</tr>
<tr>
<td>Samurai Helmet</td>
<td>5 Regional Coins</td>
<td>Bowser</td>
<td> The samurai wore helmets that were functional AND fancy.</td>
</tr>
<tr>
<td>Happi Headband</td>
<td>20 Regional Coins</td>
<td>Bowser</td>
<td>This coiled headband is perfect when you want to cover just a BIT of your head.</td>
</tr>
<tr>
<td>Space Helmet</td>
<td>5 Regional Coins</td>
<td>Moon</td>
<td>When you need to avoid the void.</td>
</tr>
<tr>
<td>Mario 64 Cap</td>
<td>15 Regional Coins</td>
<td>Mushroom</td>
<td>A charmingly blocky version of a classic.</td>
</tr>
<tr>
<td>Employee Cap</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>A Crazy Cap original!</td>
</tr>
<tr>
<td>Fashoinable Cap</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>An upscale upgrade to an upstanding hero's upper half.</td>
</tr>
<tr>
<td>Mechanic Cap</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>A good hat to wear when it's time to get down to work.</td>
</tr>
<tr>
<td>Black Fedora</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>A good hat to wear when it's time to get down to work.</td>
</tr>
<tr>
<td>Pirate Hat</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>YARRRR!</td>
</tr>
<tr>
<td>Clown Hat</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>The pefect hat for pratfalls, teeny cars, and wasting good pie.</td>
</tr>
<tr>
<td>Football Helmet</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>A colouful helmet to help keep one's head safe from the sporting life.</td>
</tr>
<tr>
<td>Classic Cap</td>
<td>50 Gold Coins</td>
<td>Any</td>
<td>For the truly nostalgic, it doesn't get any more classic than this.</td>
</tr>
<tr>
<td>Luigi Cap</td>
<td>100 Gold Coins</td>
<td>Any</td>
<td>The standard cap in a vivid green. The L stands for "winner."</td>
</tr>
<tr>
<td>Doctor Headwear</td>
<td>100 Gold Coins</td>
<td>Any</td>
<td>Headwear worn by a doctor famous for extremely colourful prescriptions.</td>
</tr>
<tr>
<td>Waluigi Cap</td>
<td>100 Gold Coins</td>
<td>Any</td>
<td>A cap with an upside-down L on it. It's barely used!</td>
</tr>
<tr>
<td>Diddy Kong Hat</td>
<td>100 Gold Coins</td>
<td>Any</td>
<td>A red cap with a strikingly long brim. Smells unusual.</td>
</tr>
<tr>
<td>Wario Cap</td>
<td>100 Gold Coins</td>
<td>Any</td>
<td>A cap bearing a distinctive W. It doesn't fit well and kind of chafes.</td>
</tr>
<tr>
<td>Bowser's Top Hat</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>A replica of the unique hat Bowser hade specially made for the big day.</td>
</tr>
<tr>
<td>Bridal Veil</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>A perfect replica of Princess Peach's veil.</td>
</tr>
<tr>
<td>Mario's Top Hat</td>
<td>Free</td>
<td>Moon</td>
<td>A white silk hat, perfect for the biggest day of one's life.
</td>
</tr>
<tr>
<td>Gold Mario Cap</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>A seriously shiny hat.</td>
</tr>
<tr>
<td>Metal Mario Cap</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>A metal cap that seems somehow familiar...</td>
</tr>
<tr>
<td>King's Crown</td>
<td>Free</td>
<td>Dark Side</td>
<td>An impressive crown acquired in Rabbit Ridge.</td>
</tr>
<tr>
<td>Invisibility Hat</td>
<td>Free</td>
<td>Darker Side</td>
<td>A very rare hat acquired at Culmina Crater.Easy to lose in a closet.</td>
</tr>
<tr>
<td>Musician Hat</td>
<td>500 Gold Coins</td>
<td>Any</td>
<td>A hat that's ideal for backing up a suprisingly talented mayor at a traditional festival.</td>
</tr>
<tr>
<td>Sunshine Shades</td>
<td>1500 Gold Coins</td>
<td>Any</td>
<td>A hat to remind you of an island of endless summer...with sunglasses to protect your eyes from same.</td>
</tr>
<tr>
<td>Knight Helmet</td>
<td>3000 Gold Coins</td>
<td>Any</td>
<td>A plate helm that looks really sturdy...if a bit uncomfortable.</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<th>Outfit</th>
<th>Cost</th>
<th>Kingdom</th>
<th>Description</th>
</tr>
<tr>
<td>Mario's Suit</td>
<td>Free</td>
<td>Cap</td>
<td>This tried-and-true outfit has weathered many adventures.</td>
</tr>
<tr>
<td>Black Tux </td>
<td>10 Regional Coins</td>
<td>Cap</td>
<td>Bonneton's Crazy Cap shop is famous for these impeccably tailored outfits.</td>
</tr>
<tr>
<td>Caveman Outfit</td>
<td>10 Regional Coins</td>
<td>Cascade</td>
<td>Early adventurers wore these outfits for maximum freedom of movement, if not maximum warmth.</td>
</tr>
<tr>
<td>Poncho</td>
<td>10 Regoinal Coins</td>
<td>Sand</td>
<td>Traditional folk dress of the Tostarena region. Keeps the sun off and breezes on.</td>
</tr>
<tr>
<td>Cowboy Outfit</td>
<td>25 Regoinal Coins</td>
<td>Sand</td>
<td>Old-fashioned duds with a frontier feel. Gunslinging and cow-punching optional.</td>
</tr>
<tr>
<td>Swimwear</td>
<td>10 Regional Coins</td>
<td>Lake</td>
<td>The floaty ring does not actually float - it's just an accent on the outfit.</td>
</tr>
<tr>
<td>Explorer Outfit</td>
<td>10 Regional Coins</td>
<td>Wooded</td>
<td>Clothes that keep you comfortable even in the deepest heart of the wilderness.</td>
</tr>
<tr>
<td>Scientist Outfit</td>
<td>25 regional coins</td>
<td>Wooded</td>
<td>It's a scientific fact that nothing says "scientist" like a lab coat.</td>
</tr>
<tr>
<td>Aviator Outfit</td>
<td>10 Regional Coins</td>
<td>Lost</td>
<td>This jacket is how you let people know you're a pilot when you're not in the cockpit.</td>
</tr>
<tr>
<td>Builder Outfit</td>
<td>10 Regional Coins</td>
<td>Metro</td>
<td>The perfect outfit whether you're constructing or inspecting the construction work of others.</td>
</tr>
<tr>
<td>Golf Outfit</td>
<td>25 Regionsl Coins</td>
<td>Metro</td>
<td>"What?! Wait, let me turn down my outfit so I can hear you!"</td>
</tr>
<tr>
<td>Snow Suit</td>
<td>10 Regional Coins</td>
<td>Snow</td>
<td>After decades of ice levels, FINALLY a good, warm jacket.</td>
</tr>
<tr>
<td>Resort Outfit</td>
<td>10 Regional Coins</td>
<td>Seaside</td>
<td>This outfit lets everyone know you take your relaxing seriously.</td>
</tr>
<tr>
<td>Sailor Suit</td>
<td>25 Regional Coins</td>
<td>Seaside</td>
<td>Of all uniforms, the one that is most likely to get really, really wet.</td>
</tr>
<tr>
<td>Chef Suit</td>
<td>10 Regional Coins</td>
<td>Luncheon</td>
<td>Red scarves are a staple of fashion on Mount Volbono.</td>
</tr>
<tr>
<td>Painter Outfit</td>
<td>25 Regional Coins</td>
<td>Luncheon</td>
<td>Just the outfit you would expect to see on a painter. Prestained for your convenience.</td>
</tr>
<tr>
<td>Samurai Armor</td>
<td>10 Regional Coins</td>
<td>Bowser</td>
<td>The samurai basically walked around wearing works of art.</td>
</tr>
<tr>
<td>Happi Outfit</td>
<td>25 Regional Coins</td>
<td>Bowser</td>
<td>Traditional clothing designed to be easy to move around in at a festival.</td>
</tr>
<tr>
<td>Space Suit</td>
<td>10 Regional Coins</td>
<td>Moon</td>
<td>The preferred outfit for steps and leaps of any size.</td>
</tr>
<tr>
<td>Mario 64 Suit</td>
<td>20 Regional Coins</td>
<td>Mushroom</td>
<td>When you just want to wrap yourself in nostalgia.</td>
</tr>
<tr>
<td>Employee Uniform</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Show your Crazy Cap brand loyalty with this striking outfit!
</td>
</tr>
<tr>
<td>Boxer Shorts</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>Comfortable, breezy boxers in a vibrant, mushroom-like pattern.</td>
</tr>
<tr>
<td>Fashionable Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>I'm not clashing, YOU'RE clashing!</td>
</tr>
<tr>
<td>Mechanic Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>An outfit seemingly doomed to get stained in motor oil.</td>
</tr>
<tr>
<td>Black Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>You can wear this outfit just about anywhere - it always looks good.</td>
</tr>
<tr>
<td>Pirate Outfit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Whether plundering cargo or burying treasure, you're gonna need an extremely fancy coat.</td>
</tr>
<tr>
<td>Clown Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Roomy enough for all your tumbling needs, colorful enough to be seen from space.</td>
</tr>
<tr>
<td>Football Uniform</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>Bright colors and big shoulder pads never go out of fashion.</td>
</tr>
<tr>
<td>Classic Suit</td>
<td>150 Gold Coins</td>
<td>Any</td>
<td>The outfit is still loved by longtime fans. DK has never been a fan, though.</td>
</tr>
<tr>
<td>Skeleton Suit</td>
<td>9999 Gold Coins</td>
<td>Any</td>
<td>This skeleton costume uses cutting-edge, er, something to, um... Look, we're not sure how this works. But it's cool, right?</td>
</tr>
<tr>
<td>Luigi Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>A bright green version of an established classic. Green means "let's-a go"!</td>
</tr>
<tr>
<td>Doctor Outfit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>White coat worn by a doctor famous for fighting our most colorful viruses.</td>
</tr>
<tr>
<td>Waluigi Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>This outfit makes you want to lurk in the shadows, waiting for a turn in the spotlight.</td>
</tr>
<tr>
<td>Diddy Kong Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>A popular outfit among tail enthusiasts.</td>
</tr>
<tr>
<td>Wario Suit</td>
<td>200 Gold Coins</td>
<td>Any</td>
<td>The kind of outfit that you want to wash at least once before you wear it.</td>
</tr>
<tr>
<td>Hakama</td>
<td>500 Gold Coins</td>
<td>Any</td>
<td>This traditional outfit has a nontraditional M monogram.</td>
</tr>
<tr>
<td>Bowser's Tux</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>For a terrifying, fire-breathing monster covered in spikes, Bowser sure cleans up nice.</td>
</tr>
<tr>
<td>Bridal Gown</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>A replica of Peach's wedding dress (though it did have to altered a bit to fit Mario's measurements).</td>
</tr>
<tr>
<td>Mario's Tux</td>
<td>Free</td>
<td>Moon</td>
<td>An exquisite coat with tails. WARNING: Do not engage in plumbing while wearing.</td>
</tr>
<tr>
<td>Gold Mario Suit</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>This outfit just goes all the way with the gold thing.</td>
</tr>
<tr>
<td>Metal Mario Suit</td>
<td>2000 Gold Coins</td>
<td>Any</td>
<td>When you want to wrap yourself in nostalgia, and then in aluminum foil.</td>
</tr>
<tr>
<td>King's Outfit</td>
<td>Free</td>
<td>Dark Side</td>
<td>This majestic outfit was obtained in Rabbit Ridge.</td>
</tr>
<tr>
<td>Musician Outfit</td>
<td>1000 Gold Coins</td>
<td>Any</td>
<td>The ideal suit for a jazzy retro-pastiche number, idealy performed at a simulated construction site.</td>
</tr>
<tr>
<td>Sunshine Outfit</td>
<td>3000 Gold Coins</td>
<td>Any</td>
<td>A tropical shirt appropiate for lazing on the beach, watching the dolphins, and perhaps some light graffiti cleanup.</td>
</tr>
<tr>
<td>Knight Armor</td>
<td>5000</td>
<td>Any</td>
<td>What the traditoinalist wears when rescuing a princess from a fire-breathing monster.</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<style>
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<th>Hats and Caps</th>
<th>Cost</th>
<th>Kingdom</th>
<th>Description</th>