-
Notifications
You must be signed in to change notification settings - Fork 0
/
source_index.html
executable file
·1453 lines (1373 loc) · 44.9 KB
/
source_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
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 lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<title>Universal LPC Sprite Sheet Character Generator</title>
<link rel="stylesheet" type="text/css" href="chargen.css">
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.13.7/underscore-min.js" integrity="sha512-dvWGkLATSdw5qWb2qozZBRKJ80Omy2YN/aF3wTUVC5+D1eqbA+TjWpPpoj8vorK5xGLMa2ZqIeWCpDZP/+pQGQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.string/2.4.0/underscore.string.min.js" integrity="sha512-EtNEjJOVcNyZFlf+g4ZhbYhyqBNBybgfUquvo5+gGSTTZBmm0+yJQXozIz/8qbzcdu0bWwdYQLBb5ROJqVB+Tw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript" src="sources/jhash-2.2.min.js"></script>
<script type="text/javascript" src="sources/custom-animations.js"></script>
<script type="text/javascript" src="sources/chargen.js?"></script>
</head>
<body>
<form id="customizeChar">
<div id="controls">
<h1>Universal LPC Spritesheet Generator</h1>
<p>Free/Libre pixel art sprites from the <a href="lpc.opengameart.org">Liberated Pixel Cup</a> and <a href="https://opengameart.org/content/lpc-collection">OpenGameArt.org</a>. License: <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA 3.0</a>. You must <a id="scroll-to-credits" href="#">credit the authors of this artwork.</a></p>
<div>
<label class="control-label">Download:</label>
<a id="saveAsPNG"><input type="button" value="Image (PNG)"></a>
<button type="button" class="generateSheetCreditsTxt">Credits (text)</button>
<button type="button" class="generateSheetCreditsCsv">Credits (CSV)</button>
</div>
<div>
<label class="control-label">Import/Export:</label>
<button type="button" class="exportToClipboard">Export to Clipboard (JSON)</button>
<button type="button" class="importFromClipboard">Import from Clipboard (JSON)</button>
</div>
<div>
<label class="control-label">Edit:</label>
<button type="button" id="resetAll">Reset all</button>
<button type="button" class="replacePinkMask">Replace Mask (pink)</button>
</div>
<div>
<label class="control-label">View:</label>
<button type="button" id="collapse">Collapse All</button>
<button type="button" id="expand">Expand Selected</button>
<label for="displayMode-compact"><input type="checkbox" name="displayMode" value="compact" id="displayMode-compact"> Compact Display</label>
</div>
<div>
<label class="control-label" for="searchbox">Search: </label><input type="search" id="searchbox" name="" placeholder="Search" />
</div>
</div>
<section id="chooser">
<h3>Body</h3>
<ul>
<li>
<!-- Supported Animation -->
<span class="condensed" title="Only include assets that support the selected animation">Supported Animation</span>
<ul>
<li class="noPreview">
<input type="radio" id="animation-any" name="animation" checked>
<label for="animation-any">Any</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-spellcast" name="animation">
<label for="animation-spellcast">Spellcast</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-thrust" name="animation">
<label for="animation-thrust">Thrust</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-walk" name="animation">
<label for="animation-walk">Walk</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-slash" name="animation">
<label for="animation-slash">Slash</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-shoot" name="animation">
<label for="animation-shoot">Shoot</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-hurt" name="animation">
<label for="animation-hurt">Hurt</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-watering" name="animation">
<label for="animation-watering">Watering</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-idle" name="animation">
<label for="animation-idle">Idle</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-jump" name="animation">
<label for="animation-jump">Jump</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-run" name="animation">
<label for="animation-run">Run</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-sit" name="animation">
<label for="animation-sit">Sit</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-emote" name="animation">
<label for="animation-emote">Emote</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-climb" name="animation">
<label for="animation-climb">Climb</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-combat" name="animation">
<label for="animation-combat">Combat</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-1h_slash" name="animation">
<label for="animation-1h_slash">1-Handed Slash</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-1h_backslash" name="animation">
<label for="animation-1h_backslash">1-Handed Backslash</label>
</li>
<li class="noPreview">
<input type="radio" id="animation-1h_halfslash" name="animation">
<label for="animation-1h_halfslash">1-Handed HalfSlash</label>
</li>
</ul>
</li>
<li>
<!-- Body types -->
<span class="expanded">Body type</span>
<ul style="display:block;">
<li class="noPreview">
<input type="radio" id="sex-male" name="sex" checked>
<label for="sex-male">Male</label>
</li>
<li class="noPreview">
<input type="radio" id="sex-female" name="sex">
<label for="sex-female">Female</label>
</li>
<li class="noPreview">
<input type="radio" id="sex-teen" name="sex">
<label for="sex-teen">Teen</label>
</li>
<li class="noPreview" data-animations="walk,slash,hurt,idle,jump,sit">
<input type="radio" id="sex-child" name="sex">
<label for="sex-child">Child</label>
</li>
<li class="noPreview" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering,climb,idle,combat,jump,run">
<input type="radio" id="sex-pregnant" name="sex">
<label for="sex-pregnant">Pregnant</label>
</li>
<li class="noPreview" data-animations="spellcast,thrust,walk,slash,hurt,watering,climb,idle,combat,jump">
<input type="radio" id="sex-muscular" name="sex">
<label for="sex-muscular">Muscular</label>
</li>
</ul>
</li>
<!-- Shadow -->
div_sheet_shadow
<!-- Bodies -->
div_sheet_body
<li data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Special</span>
<ul>
div_sheet_body_zombie
div_sheet_body_skeleton
</ul>
</li>
<!-- Wounds -->
<li data-required="" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Wounds</span>
<ul>
div_sheet_wound_arm
div_sheet_wound_brain
div_sheet_wound_ribs
div_sheet_wound_eye
div_sheet_wound_mouth
</ul>
</li>
<li data-required="male,female,muscular,pregnant" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Prostheses</span>
<ul>
div_sheet_prosthesis_hook
div_sheet_prosthesis_peg_leg
</ul>
</li>
<li>
<span class="condensed">Tails</span>
<ul>
div_sheet_tail_wolf
div_sheet_tail_wolf_fluffy
div_sheet_tail_cat
div_sheet_tail_lizard_alt
</ul>
</li>
<li data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Wings</span>
<ul>
div_sheet_wings_feathered
div_sheet_wings_bat
div_sheet_wings_lizard_alt
<li>
<span class="condensed">Monarch Wings</span>
<ul>
div_sheet_wings_monarch
div_sheet_wings_monarch_edge
div_sheet_wings_monarch_dots
</ul>
</li>
<li>
<span class="condensed">Pixie Wings</span>
<ul>
div_sheet_wings_pixie
div_sheet_wings_pixie_transparent
</ul>
</li>
div_sheet_wings_lunar
<li>
<span class="condensed">Dragonfly Wings</span>
<ul>
div_sheet_wings_dragonfly
div_sheet_wings_dragonfly_transparent
</ul>
</li>
</ul>
</li>
<li>
<span class="condensed">Lizard</span>
<ul>
div_sheet_wings_lizard
div_sheet_wings_lizard_bat
div_sheet_tail_lizard
</ul>
</li>
</ul>
<h3>Head</h3>
<ul>
<!-- Heads -->
<li>
<span class="condensed">Heads</span>
<ul>
div_sheet_heads_human_child
div_sheet_heads_human_female
div_sheet_heads_human_male
div_sheet_heads_human_female_elderly
div_sheet_heads_human_male_elderly
div_sheet_heads_human_male_plump
div_sheet_heads_human_male_gaunt
div_sheet_heads_human_male_small
div_sheet_heads_human_female_small
div_sheet_heads_human_elderly_small
div_sheet_heads_boarman
div_sheet_heads_boarman_child
div_sheet_heads_pig
div_sheet_heads_pig_child
div_sheet_heads_sheep
div_sheet_heads_sheep_child
div_sheet_heads_minotaur
div_sheet_heads_minotaur_female
div_sheet_heads_minotaur_child
div_sheet_heads_wartotaur
div_sheet_heads_wolf_child
div_sheet_heads_wolf_female
div_sheet_heads_wolf_male
div_sheet_heads_rabbit
div_sheet_heads_rabbit_child
div_sheet_heads_rat
div_sheet_heads_rat_child
div_sheet_heads_mouse
div_sheet_heads_mouse_child
div_sheet_heads_lizard_child
div_sheet_heads_lizard_female
div_sheet_heads_lizard_male
div_sheet_heads_orc_child
div_sheet_heads_orc_female
div_sheet_heads_orc_male
div_sheet_heads_goblin
div_sheet_heads_goblin_child
div_sheet_heads_alien
div_sheet_heads_troll
div_sheet_heads_troll_child
div_sheet_heads_skeleton
div_sheet_heads_zombie
div_sheet_heads_jack
div_sheet_heads_vampire
div_sheet_heads_frankenstein
</ul>
</li>
<!-- Ears -->
<li>
<span class="condensed">Ears</span>
<ul>
div_sheet_head_ears_big
div_sheet_head_ears_elven
div_sheet_head_ears_long
div_sheet_head_ears_medium
div_sheet_head_ears_hang
div_sheet_head_ears_down
div_sheet_head_ears_dragon
</ul>
</li>
<!-- Furry Ears -->
<li>
<span class="condensed">Furry Ears</span>
<ul>
<li>
<span class="condensed">Top Ears</span>
<ul>
div_sheet_head_ears_cat
div_sheet_head_ears_cat_skin
div_sheet_head_ears_wolf
div_sheet_head_ears_wolf_skin
</ul>
</li>
<li>
<span class="condensed">Side Ears</span>
<ul>
div_sheet_head_ears_lykon
div_sheet_head_ears_lykon_skin
div_sheet_head_ears_zabos
div_sheet_head_ears_zabos_skin
div_sheet_head_ears_zabos
div_sheet_head_ears_avyon_skin
</ul>
</li>
</ul>
</li>
<!-- Nose -->
<li>
<span class="condensed">Nose</span>
<ul>
div_sheet_head_nose_big
div_sheet_head_nose_button
div_sheet_head_nose_straight
div_sheet_head_nose_elderly
div_sheet_head_nose_large
</ul>
</li>
<!-- Eyes -->
<li>
<span class="condensed">Eyes</span>
<ul>
div_sheet_eyes
div_sheet_eyes_cyclops
</ul>
</li>
<!-- Eyebrows -->
<li>
<span class="condensed">Eyebrows</span>
<ul>
div_sheet_eyebrows_thick
div_sheet_eyebrows_thin
</ul>
</li>
div_sheet_head_wrinkles
<!-- Beards -->
<li data-required="male,muscular,female,teen,pregnant">
<span class="condensed">Beards</span>
<ul>
div_sheet_beards_beard
div_sheet_beards_winter
div_sheet_beards_5oclock_shadow
div_sheet_beards_trimmed
div_sheet_beards_medium
</ul>
</li>
<!-- Mustaches -->
<li data-required="male,muscular,female,teen,pregnant">
<span class="condensed">Mustaches</span>
<ul>
div_sheet_beards_bigstache
div_sheet_beards_mustache
div_sheet_beards_french
div_sheet_beards_walrus
div_sheet_beards_chevron
div_sheet_beards_handlebar
div_sheet_beards_lampshade
div_sheet_beards_horseshoe
</ul>
</li>
<!-- Hair -->
<li>
<span class="condensed">Hair</span>
<ul>
<li><span class="condensed">Hair Extensions</span>
<ul>
<li><span class="condensed">Bangs</span><ul>
div_sheet_hairext_braidl
div_sheet_hairext_braidr
div_sheet_hairext_xlong_bangl
div_sheet_hairext_xlong_bangr
div_sheet_hairext_xlong_braidl
div_sheet_hairext_xlong_braidr
</ul></li>
</ul>
<ul>
<li><span class="condensed">Ponytails</span><ul>
div_sheet_hairext_topknot_short
div_sheet_hairext_topknot_long
</ul></li>
</ul>
</li>
<li><span class="condensed">afro</span><ul>
div_sheet_hair_afro
div_sheet_hair_natural
div_sheet_hair_dreadlocks_short
div_sheet_hair_twists_fade
div_sheet_hair_twists_straight
div_sheet_hair_dreadlocks_long
div_sheet_hair_flat_top_straight
div_sheet_hair_flat_top_fade
div_sheet_hair_cornrows
</ul></li>
<li><span class="condensed">curly</span><ul>
div_sheet_hair_jewfro
div_sheet_hair_curly_short
div_sheet_hair_curly_long
</ul></li>
<li><span class="condensed">bald/shaved</span><ul>
div_sheet_hair_balding
div_sheet_hair_longhawk
div_sheet_hair_shorthawk
div_sheet_hair_high_and_tight
div_sheet_hair_buzzcut
</ul></li>
<li><span class="condensed">short</span><ul>
div_sheet_hair_plain
div_sheet_hair_pixie
div_sheet_hair_page
div_sheet_hair_idol
div_sheet_hair_mop
div_sheet_hair_parted
div_sheet_hair_parted2
div_sheet_hair_parted3
div_sheet_hair_parted_side_bangs
div_sheet_hair_parted_side_bangs2
div_sheet_hair_messy1
div_sheet_hair_messy2
div_sheet_hair_messy3
div_sheet_hair_bedhead
div_sheet_hair_unkempt
div_sheet_hair_bangsshort
div_sheet_hair_swoop
div_sheet_hair_swoop_side
div_sheet_hair_curtains
div_sheet_hair_page2
div_sheet_hair_bangs
div_sheet_hair_single
div_sheet_hair_cowlick
div_sheet_hair_cowlick_tall
</ul></li>
<li><span class="condensed">spiky</span><ul>
div_sheet_hair_spiked_porcupine
div_sheet_hair_spiked_liberty2
div_sheet_hair_spiked_liberty
div_sheet_hair_spiked_beehive
div_sheet_hair_spiked
div_sheet_hair_spiked2
div_sheet_hair_halfmessy
</ul></li>
<li><span class="condensed">pigtails</span><ul>
div_sheet_hair_bunches
div_sheet_hair_pigtails
div_sheet_hair_pigtails_bangs
</ul></li>
<li><span class="condensed">bob</span><ul>
div_sheet_hair_bob
div_sheet_hair_lob
div_sheet_hair_bob_side_part
div_sheet_hair_relm_short
</ul></li>
<li><span class="condensed">braids, ponytails, updos</span><ul>
div_sheet_hair_half_up
div_sheet_hair_bangs_bun
div_sheet_hair_topknot_short
div_sheet_hair_topknot_short2
div_sheet_hair_topknot_long
div_sheet_hair_topknot_long2
div_sheet_hair_ponytail
div_sheet_hair_ponytail2
div_sheet_hair_high_ponytail
div_sheet_hair_braid
div_sheet_hair_braid2
div_sheet_hair_shoulderl
div_sheet_hair_shoulderr
div_sheet_hair_long_tied
div_sheet_hair_relm_ponytail
</ul></li>
<li><span class="condensed">long</span><ul>
div_sheet_hair_loose
div_sheet_hair_bangslong
div_sheet_hair_bangslong2
div_sheet_hair_long
div_sheet_hair_long_messy
div_sheet_hair_long_messy2
div_sheet_hair_curtains_long
div_sheet_hair_wavy
div_sheet_hair_long_center_part
div_sheet_hair_long_straight
</ul></li>
<li><span class="condensed">very long</span><ul>
div_sheet_hair_princess
div_sheet_hair_sara
div_sheet_hair_long_band
div_sheet_hair_xlong
</ul></li>
</ul>
</li>
<li>
<span class="condensed">Appendages</span>
<ul>
div_sheet_head_horns_backwards
div_sheet_head_horns_curled
div_sheet_head_fins_fin
div_sheet_head_fins_fin_short
</ul>
</li>
<!-- Head coverings (under hat) -->
<li>
<span class="condensed">Head Coverings</span>
<ul>
<!-- Hoods -->
<li>
<span class="condensed">Hoods</span>
<ul>
div_sheet_hat_hood_cloth
div_sheet_hat_hood_sack_cloth
div_sheet_hat_hood_hijab
div_sheet_hat_helmet_mail
</ul>
</li>
<!-- Bandanas -->
<li>
<span class="condensed">Bandanas</span>
<ul>
div_sheet_hat_bandana
div_sheet_hat_bandana2
div_sheet_hat_bandana_pirate
div_sheet_hat_bandana_pirate_skull
</ul>
</li>
<!-- Headbands -->
<li>
<span class="condensed">Headbands</span>
<ul>
div_sheet_hat_headband_kerchief
div_sheet_hat_headband_tied
div_sheet_hat_headband_thick
div_sheet_hat_headband_thick_rune
div_sheet_hat_headband_hairtie
div_sheet_hat_headband_hairtie_rune
</ul>
</li>
</ul>
</li>
<!-- Hats -->
<li>
<span class="condensed">Hats</span>
<ul>
<li>
<span class="condensed">Caps</span>
<ul>
div_sheet_hat_cap_feather
div_sheet_hat_cap_feather_alt
div_sheet_hat_cap_bonnie
div_sheet_hat_cap_bonnie_tilt
div_sheet_hat_cap_bonnie_feather
div_sheet_hat_cap_cavalier
div_sheet_hat_cap_cavalier_feather
</ul>
</li>
<li>
<span class="condensed">Tricorne</span>
<ul>
<li>
<span class="condensed">Basic</span>
<ul>
div_sheet_hat_tricorne
div_sheet_hat_tricorne_stitched
div_sheet_hat_tricorne_thatch
</ul>
</li>
<li>
<span class="condensed">Lieutenant</span>
<ul>
div_sheet_hat_tricorne_lieutenant
div_sheet_hat_tricorne_lieutenant_trim
</ul>
</li>
<li>
<span class="condensed">Captain</span>
<ul>
div_sheet_hat_tricorne_captain
div_sheet_hat_tricorne_captain_trim
div_sheet_hat_tricorne_captain_skull
</ul>
</li>
</ul>
</li>
<li>
<span class="condensed">Bicorne Athwart</span>
<ul>
<li>
<span class="condensed">Basic</span>
<ul>
div_sheet_hat_bicorne_athwart_basic
div_sheet_hat_bicorne_athwart_basic_skull
</ul>
</li>
<li>
<span class="condensed">Captain</span>
<ul>
div_sheet_hat_bicorne_athwart_captain
div_sheet_hat_bicorne_athwart_captain_skull
</ul>
</li>
<li>
<span class="condensed">Admiral</span>
<ul>
div_sheet_hat_bicorne_athwart_admiral
div_sheet_hat_bicorne_athwart_admiral_trim
div_sheet_hat_bicorne_athwart_admiral_cockade
</ul>
</li>
<li>
<span class="condensed">Commodore</span>
<ul>
div_sheet_hat_bicorne_athwart_commodore
div_sheet_hat_bicorne_athwart_commodore_trim
</ul>
</li>
</ul>
</li>
<li>
<span class="condensed">Bicorne Foreaft</span>
<ul>
div_sheet_hat_bicorne_foreaft
div_sheet_hat_bicorne_foreaft_commodore
div_sheet_hat_bicorne_foreaft_commodore_trim
</ul>
</li>
<li>
<span class="condensed">Magic</span>
<ul>
div_sheet_hat_magic_misc
<li>
<span class="condensed">Wizard</span>
<ul>
div_sheet_hat_magic_wizard
div_sheet_hat_magic_wizard_belt
div_sheet_hat_magic_wizard_buckle
</ul>
</li>
</ul>
</li>
<li>
<span class="condensed">Formal</span>
<ul>
div_sheet_hat_formal_tophat
div_sheet_hat_formal_bowler
div_sheet_hat_formal_crown
div_sheet_hat_formal_tiara
</ul>
</li>
<li>
<span class="condensed">Holiday</span>
<ul>
div_sheet_hat_holiday_christmas
div_sheet_hat_holiday_santa
div_sheet_hat_holiday_elf
</ul>
</li>
</ul>
</li>
<!-- Helmet -->
<li>
<span class="condensed">Helmets</span>
<ul>
<li>
<span class="condensed">Helmets</span>
<ul>
div_sheet_hat_helmet_armet
div_sheet_hat_helmet_armet_simple
div_sheet_hat_helmet_barbarian
div_sheet_hat_helmet_barbarian_nasal
div_sheet_hat_helmet_barbarian_viking
div_sheet_hat_helmet_barbuta
div_sheet_hat_helmet_barbuta_simple
div_sheet_hat_helmet_bascinet
div_sheet_hat_helmet_bascinet_pigface
div_sheet_hat_helmet_bascinet_pigface_raised
div_sheet_hat_helmet_bascinet_round
div_sheet_hat_helmet_bascinet_round_raised
div_sheet_hat_helmet_close
div_sheet_hat_helmet_flattop
div_sheet_hat_helmet_greathelm
div_sheet_hat_helmet_horned
div_sheet_hat_helmet_kettle
div_sheet_hat_helmet_legion
div_sheet_hat_helmet_maximus
div_sheet_hat_helmet_morion
div_sheet_hat_helmet_nasal
div_sheet_hat_helmet_norman
div_sheet_hat_helmet_pointed
div_sheet_hat_helmet_spangenhelm
div_sheet_hat_helmet_spangenhelm_viking
div_sheet_hat_helmet_sugarloaf
div_sheet_hat_helmet_sugarloaf_simple
div_sheet_hat_helmet_xeon
</ul>
</li>
<li>
<span class="condensed">Visors</span>
<ul>
div_sheet_hat_visor_grated
div_sheet_hat_visor_grated_narrow
div_sheet_hat_visor_horned
div_sheet_hat_visor_pigface
div_sheet_hat_visor_pigface_raised
div_sheet_hat_visor_round
div_sheet_hat_visor_round_raised
div_sheet_hat_visor_slit
div_sheet_hat_visor_slit_narrow
</ul>
</li>
<li>
<span class="condensed">Helmet Accessories</span>
<ul>
div_sheet_hat_accessory_crest
div_sheet_hat_accessory_crest_centurion
div_sheet_hat_accessory_wings
div_sheet_hat_accessory_horns_short
div_sheet_hat_accessory_horns_upward
div_sheet_hat_accessory_horns_downward
div_sheet_hat_accessory_plumage
div_sheet_hat_accessory_plumage_centurion
div_sheet_hat_accessory_plumage_legion
</ul>
</li>
</ul>
</li>
<!-- Facial accessories -->
<li>
<span class="condensed">Accessories</span>
<ul>
<!-- Glasses -->
<li>
<span class="condensed">Glasses</span>
<ul>
div_sheet_facial_glasses
div_sheet_facial_glasses_halfmoon
div_sheet_facial_glasses_nerd
div_sheet_facial_glasses_shades
div_sheet_facial_glasses_secretary
div_sheet_facial_glasses_round
div_sheet_facial_glasses_sunglasses
</ul>
</li>
<!-- Monocle -->
<li>
<span class="condensed">Monocle</span>
<ul>
div_sheet_facial_monocle_left
div_sheet_facial_monocle_left_frame
div_sheet_facial_monocle_right
div_sheet_facial_monocle_right_frame
</ul>
</li>
<!-- Eyepatches -->
<li>
<span class="condensed">Eyepatches</span>
<ul>
div_sheet_facial_eyepatch_ambi
div_sheet_facial_eyepatch_left
div_sheet_facial_eyepatch_right
div_sheet_facial_eyepatch2_left
div_sheet_facial_eyepatch2_right
div_sheet_facial_eyepatch_small_left
div_sheet_facial_eyepatch_small_right
</ul>
</li>
div_sheet_facial_mask_plain
<!-- Earrings -->
<li>
<span class="condensed">Earrings</span>
<ul>
div_sheet_facial_earring_left
div_sheet_facial_earring_right
div_sheet_facial_earrings_emerald
div_sheet_facial_earrings_moon
div_sheet_facial_earrings_pear
div_sheet_facial_earrings_princess
div_sheet_facial_earrings_stud
</ul>
</li>
</ul>
</li>
<!-- Neck -->
<li data-required="male,female,pregnant,muscular,teen">
<span class="condensed">Neck</span>
<ul>
div_sheet_neck_bowtie
div_sheet_neck_bowtie2
div_sheet_neck_necktie
div_sheet_neck_scarf
div_sheet_neck_capeclip
div_sheet_neck_capetie
div_sheet_neck_jabot
div_sheet_neck_cravat
div_sheet_neck_necklace
div_sheet_neck_necklace_simple
div_sheet_neck_necklace_chain
div_sheet_neck_necklace_beaded_small
div_sheet_neck_necklace_beaded_large
<li>
<span class="condensed">Necklace Charms</span>
<ul>
div_sheet_neck_charm_box
div_sheet_neck_charm_oval
div_sheet_neck_charm_ring
div_sheet_neck_charm_star
div_sheet_neck_gem_emerald
div_sheet_neck_gem_marquise
div_sheet_neck_gem_natural
div_sheet_neck_gem_pear
div_sheet_neck_gem_pearl
div_sheet_neck_gem_princess
div_sheet_neck_gem_round
div_sheet_neck_gem_trilliant
div_sheet_neck_amulet_cross
div_sheet_neck_amulet_dangle
div_sheet_neck_amulet_spider
</ul>
</li>
</ul>
</li>
</ul>
<h3>Arms</h3>
<ul>
<!-- ARMS -->
<!-- Shoulders -->
<li data-required="male,female,pregnant,muscular" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Shoulders</span>
<ul>
div_sheet_shoulders_legion
div_sheet_shoulders_plate
div_sheet_shoulders_leather
div_sheet_shoulders_epaulets
div_sheet_shoulders_mantal
</ul>
</li>
<!-- Arms -->
div_sheet_arms_armour
<!-- Bauldron -->
div_sheet_bauldron
<!-- Bracers -->
<li data-required="male,female,pregnant,muscular" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Wrists</span>
<ul>
div_sheet_arms_bracers
div_sheet_wrists_cuffs
div_sheet_wrists_cuffs_lace
</ul>
</li>
<!-- Gloves -->
div_sheet_arms_gloves
div_sheet_arms_hands_ring_stud
</ul>
<!-- TORSO -->
<h3>Torso</h3>
<ul>
<!-- Dress -->
<li data-required="female,teen" data-animations="spellcast,thrust,walk,slash,shoot,hurt,watering">
<span class="condensed">Dresses</span>
<ul>
div_sheet_dress_sash
div_sheet_dress_slit
div_sheet_dress_bodice
<!-- Kimono -->
<li data-required="female,teen">
<span class="condensed">Kimono</span>
<ul>
div_sheet_dress_kimono
div_sheet_dress_kimono_trim
div_sheet_dress_kimono_split
div_sheet_dress_kimono_split_trim
div_sheet_dress_kimono_longsleeve
div_sheet_dress_kimono_longsleeve_trim
div_sheet_dress_kimono_oversize
div_sheet_dress_kimono_oversize_trim
</ul>
</li>
</ul>
</li>
<!-- Torso clothes -->
<li data-required="male,female,pregnant,child,teen">
<span class="condensed">Shirts</span>
<ul>
div_sheet_torso_clothes_child_shirt
<!-- Longsleeve Shirts -->
<li data-required="male,female,pregnant,teen">
<span class="condensed">Longsleeve</span>
<ul>
div_sheet_torso_clothes_longsleeve
div_sheet_torso_clothes_longsleeve_scoop
div_sheet_torso_clothes_longsleeve_formal
div_sheet_torso_clothes_longsleeve_formal_striped
div_sheet_torso_clothes_longsleeve_laced
div_sheet_torso_clothes_longsleeve2
div_sheet_torso_clothes_longsleeve2_vneck
div_sheet_torso_clothes_longsleeve2_scoop
div_sheet_torso_clothes_longsleeve2_buttoned
div_sheet_torso_clothes_longsleeve2_polo
div_sheet_torso_clothes_longsleeve2_cardigan
</ul>
</li>
<!-- Shortsleeve Shirts -->
<li data-required="male,female,pregnant,teen">
<span class="condensed">Shortsleeve</span>
<ul>
div_sheet_torso_clothes_shortsleeve
div_sheet_torso_clothes_shortsleeve_polo
div_sheet_torso_clothes_tshirt
div_sheet_torso_clothes_tshirt_vneck
div_sheet_torso_clothes_tshirt_scoop
div_sheet_torso_clothes_tshirt_buttoned
</ul>
</li>
<!-- Sleeveless Shirts -->
<li data-required="male,female,pregnant,teen">
<span class="condensed">Sleeveless</span>
<ul>
div_sheet_torso_clothes_sleeveless
div_sheet_torso_clothes_sleeveless_laced
div_sheet_torso_clothes_sleeveless_striped
div_sheet_torso_clothes_sleeveless_tanktop
div_sheet_torso_clothes_sleeveless2
div_sheet_torso_clothes_sleeveless2_vneck
div_sheet_torso_clothes_sleeveless2_scoop
div_sheet_torso_clothes_sleeveless2_buttoned
div_sheet_torso_clothes_sleeveless2_polo
</ul>
</li>
div_sheet_torso_clothes_corset
div_sheet_torso_clothes_blouse
div_sheet_torso_clothes_blouse_longsleeve
div_sheet_torso_clothes_tunic
div_sheet_torso_clothes_tunic_sara
div_sheet_torso_clothes_robe
</ul>