-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCHARACTER_TEMPLATE_SCHEM.yaml
More file actions
6148 lines (5577 loc) · 168 KB
/
CHARACTER_TEMPLATE_SCHEM.yaml
File metadata and controls
6148 lines (5577 loc) · 168 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
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
# Norse Saga Engine - Complete Character Data Reference
# =====================================================
# This file contains all possible data points, selections, and enumerations
# from the character_generator.py system, formatted for use with the
# deepseek_yaml_20260216_16bc2b.yaml template.
#
# Version: 6.0
# Last Updated: 2026-02-16
# =============================================================================
# IDENTITY & CORE - ALL POSSIBLE VALUES
# =============================================================================
identity_enums:
gender:
- "male"
- "female"
culture:
# Norse cultures
- "norse_swedish"
- "norse_danish"
- "norse_norwegian"
- "norse_icelandic"
- "norse_greenlandic"
- "norse_danelaw"
- "norse_irish"
- "norse_faroeislands"
- "norse_varangian"
# Foreign cultures
- "anglo_saxon"
- "frankish"
- "slavic"
- "byzantine"
- "arabic"
- "irish"
culture_display:
# Norse cultures
norse_swedish: "Norse Swedish"
norse_danish: "Norse Danish"
norse_norwegian: "Norse Norwegian"
norse_icelandic: "Norse Icelandic"
norse_greenlandic: "Norse Greenlandic"
norse_danelaw: "Norse Danelaw"
norse_irish: "Hiberno-Norse"
norse_faroeislands: "Norse Faroese"
norse_varangian: "Varangian (Rus')"
# Foreign cultures
anglo_saxon: "Anglo-Saxon"
frankish: "Frankish"
slavic: "Slavic"
byzantine: "Byzantine"
arabic: "Arabic"
irish: "Irish"
ethnicity:
- "Nordic"
- "Scandinavian"
- "Germanic"
- "Celtic"
- "Slavic"
- "Mediterranean"
- "Middle Eastern"
- "Hiberno-Norse"
- "Rus"
- "Mixed Norse-Celtic"
- "Mixed Norse-Slavic"
- "Icelandic"
- "Greenlandic Norse"
- "Mixed"
social_class:
- "thrall"
- "karl"
- "jarl"
- "king"
- "volva"
- "skald"
- "merchant"
- "craftsman"
- "outlaw"
- "thegn" # Anglo-Saxon noble
- "ceorl" # Anglo-Saxon freeman
- "boyar" # Slavic noble
- "patrician" # Byzantine noble
- "godar" # Icelandic chieftain
- "hovding" # Faroese chieftain
- "druzhina" # Varangian guard member
social_class_display:
thrall: "Thrall (Slave)"
karl: "Karl (Freeman)"
jarl: "Jarl (Noble)"
king: "King"
volva: "Völva (Seeress)"
skald: "Skald (Poet)"
merchant: "Merchant"
craftsman: "Craftsman"
outlaw: "Outlaw"
thegn: "Thegn (Anglo-Saxon Noble)"
ceorl: "Ceorl (Anglo-Saxon Freeman)"
boyar: "Boyar (Slavic Noble)"
patrician: "Patrician (Byzantine Noble)"
godar: "Goðar (Icelandic Chieftain)"
hovding: "Høvding (Faroese Chieftain)"
druzhina: "Druzhina (Varangian Guard)"
occupation:
- "Warrior"
- "Shieldmaiden"
- "Berserker"
- "Huskarl"
- "Raider"
- "Farmer"
- "Fisherman"
- "Hunter"
- "Trapper"
- "Trader"
- "Merchant"
- "Sailor"
- "Shipbuilder"
- "Smith"
- "Blacksmith"
- "Weaponsmith"
- "Armorer"
- "Jeweler"
- "Carpenter"
- "Woodcarver"
- "Leatherworker"
- "Tanner"
- "Weaver"
- "Spinner"
- "Dyer"
- "Potter"
- "Brewer"
- "Baker"
- "Cook"
- "Healer"
- "Herbalist"
- "Midwife"
- "Volva"
- "Seeress"
- "Vitki" # Male sorcerer
- "Seidrkona" # Female seidr practitioner
- "Seidrmadur" # Male seidr practitioner
- "Rune Wizard"
- "Runecarver"
- "Gothi" # Priest
- "Gydja" # Priestess
- "Skald"
- "Poet"
- "Storyteller"
- "Law-speaker"
- "Judge"
- "Thingman"
- "Guard"
- "Watchman"
- "Spy"
- "Scout"
- "Outlaw"
- "Exile"
- "Beggar"
- "Thrall"
- "Bondmaid"
- "Housecarl"
- "Thegn"
- "Ceorl"
- "Boyar"
- "Patrician"
- "Godi" # Icelandic chieftain/priest
- "Logsogumadur" # Law-speaker in Iceland
- "Varangian Guard"
- "Druzhina Member"
- "Walrus Ivory Hunter" # Greenlandic
- "Norse-Gael" # Hiberno-Norse
- "Ostmen" # Norse-Irish
specialization:
- "Shieldmaiden"
- "Swordmaster"
- "Axeman"
- "Spearman"
- "Archer"
- "Berserker"
- "Ulfheðinn" # Wolf warrior
- "Bjorn" # Bear warrior
- "Dual-wielder"
- "Shield-wall specialist"
- "Ship captain"
- "Navigator"
- "Rune master"
- "Seidr worker"
- "Herbalist"
- "Bone-setter"
- "Midwife"
- "Spae-wife" # Prophetess
- "Spae-man" # Prophet
- "Trade master"
- "Silver-tongue" # Negotiator
- "Pathfinder"
- "Woodsman"
- "Mountain guide"
- "Althing specialist" # Icelandic
- "Saga keeper" # Icelandic
- "Walrus hunter" # Greenlandic
- "Nestorian missionary" # Varangian
- "Drengr" # Honorable warrior
role:
- "warrior"
- "shieldmaiden"
- "berserker"
- "huskarl"
- "volva"
- "vitki"
- "sorcerer"
- "jarl"
- "merchant"
- "skald"
- "gothi"
- "gydja"
- "blacksmith"
- "farmer"
- "thrall"
- "hunter"
- "healer"
- "bondmaid"
- "raider"
- "sailor"
- "fisherman"
- "craftsman"
- "outlaw"
- "godi" # Icelandic chieftain
- "varangian" # Varangian Guard
- "walrus_hunter" # Greenlandic
- "norse_gael" # Hiberno-Norse
- "lawspeaker" # Icelandic
species:
- "human"
- "half_elf" # Álfblóð (Elf-blooded)
- "aasimar" # Ljósálfar-kin (Light-elf kin)
- "tiefling" # Jötun-blooded (Giant-blooded)
- "dwarf" # Dvergr
- "goliath" # Jötun-kin (Giant-kin)
species_display:
human: "Human (Mann)"
half_elf: "Álfblóð (Elf-blooded)"
aasimar: "Ljósálfar-kin (Light-elf kin)"
tiefling: "Jötun-blooded (Giant-blooded)"
dwarf: "Dvergr (Dwarf)"
goliath: "Jötun-kin (Giant-kin)"
species_weights:
human: 9000
half_elf: 1
aasimar: 1
tiefling: 1
dwarf: 2
goliath: 1
literacy:
- "none"
- "runic_basic"
- "runic_fluent"
- "latin_basic"
- "latin_fluent"
- "multilingual"
- "scholarly"
- "icelandic_saga_literate"
- "greek_basic" # For Varangians
- "slavic_fluent" # For Varangians in Rus'
languages:
- "Old Norse"
- "Old Swedish"
- "Old Danish"
- "Old Norwegian"
- "Old Icelandic"
- "Old English"
- "Old Frankish"
- "Old Saxon"
- "Old Slavic"
- "Old Irish"
- "Byzantine Greek"
- "Medieval Greek"
- "Arabic"
- "Latin"
- "Sami"
- "Finnish"
- "Gaelic"
- "Cumbric"
- "Pictish"
- "Greenlandic Inuit"
- "Faroese"
- "Norse-Gael Pidgin"
- "Old East Slavic"
- "Church Slavonic"
# =============================================================================
# PHYSICAL APPEARANCE - ALL POSSIBLE VALUES
# =============================================================================
appearance_enums:
height:
male:
- "short" # Under 5'5"
- "average" # 5'5" - 5'9"
- "tall" # 5'9" - 6'0"
- "very tall" # 6'0" - 6'3"
- "imposing" # 6'3" - 6'6"
- "towering" # Over 6'6"
female:
- "petite" # Under 5'2"
- "average height" # 5'2" - 5'6"
- "tall" # 5'6" - 5'9"
- "statuesque" # 5'9" - 6'0"
- "elegant" # 5'6" - 5'9" with graceful bearing
- "willowy" # Tall and slender
build:
male:
- "lean and wiry"
- "athletic"
- "muscular"
- "broad-shouldered"
- "tall and lean"
- "powerfully built"
- "barrel-chested"
- "compact and strong"
- "towering and massive"
- "well-proportioned"
- "rangy"
- "solidly built"
- "thick-armed"
- "broad-backed"
- "tall and muscular"
- "stocky but strong"
- "lithe and quick"
- "heavily muscled"
- "spare but tough"
- "wide-shouldered"
- "long-limbed"
- "sturdy"
- "imposing"
- "trim and fit"
- "large-framed"
- "densely muscled"
- "tall and broad"
female:
- "slender"
- "lithe"
- "athletic"
- "graceful"
- "willowy"
- "thin"
- "thin with sexy curves"
- "lean with sexy curves"
- "lean and toned"
- "statuesque"
- "petite but strong"
- "tall and elegant"
- "slim-waisted"
- "long-legged"
- "delicately built"
- "small but fierce"
- "tall and lean"
- "dancer's build"
- "feminine but muscular"
- "slender but strong"
hair_colors:
nordic:
- "golden blonde"
- "platinum blonde"
- "ash blonde"
- "honey blonde"
- "strawberry blonde"
- "light brown"
- "dark blonde"
- "wheat blonde"
- "flaxen"
- "sandy blonde"
- "red"
- "copper red"
- "auburn"
- "ginger"
- "flame red"
- "rust red"
- "chestnut"
- "light auburn"
- "dark auburn"
- "bronze"
other:
- "black"
- "jet black"
- "raven black"
- "dark brown"
- "brown"
- "walnut brown"
- "gray"
- "silver gray"
- "white"
- "salt and pepper"
- "iron gray"
- "mouse brown"
- "umber"
- "sable"
- "coal black"
arabic:
- "jet black"
- "raven black"
- "deep brown"
- "dark brown"
- "black with gray"
byzantine:
- "dark brown"
- "black"
- "chestnut brown"
- "auburn"
- "graying dark"
slavic:
- "light brown"
- "dark blonde"
- "brown"
- "auburn"
- "black"
- "red-brown"
irish:
- "red"
- "auburn"
- "copper"
- "dark red"
- "flame red"
- "brown"
- "black"
hair_styles:
male_norse:
- "short and practical"
- "long tied back in warrior fashion"
- "shaved sides with top knot"
- "braided at temples"
- "shoulder-length and loose"
- "wild and battle-ready"
- "receding hairline, battle-weathered"
- "close-cropped for helm-wearing"
- "long with single warrior braid"
male_arabic:
- "short and neat"
- "oiled and groomed"
- "covered by turban"
- "flowing beneath headwrap"
- "shaved head with beard"
male_byzantine:
- "carefully styled in Roman fashion"
- "short and classical"
- "oiled and perfumed"
- "curled and arranged"
male_anglo_saxon:
- "medium length, parted"
- "tonsure for clergy"
- "practical short cut"
- "longer at back, shorter at front"
male_slavic:
- "long and flowing"
- "practical warrior cut"
- "bowl-cut style"
- "shaggy and unkempt"
female_norse:
- "long and flowing"
- "in complex braids"
- "in elegant updo"
- "loose waves with silver rings woven in"
- "twin braids"
- "single long braid down back"
- "loose with braided crown"
- "intricate woven braids with beads"
- "pinned up with decorative combs"
- "half-up with flowing waves"
female_arabic:
- "long and dark beneath veil"
- "elaborately styled under silk covering"
- "adorned with gold ornaments beneath modest covering"
- "braided and hidden"
female_byzantine:
- "elaborately styled with pearls"
- "pinned up in Roman fashion"
- "flowing beneath jeweled diadem"
- "curled and perfumed"
female_anglo_saxon:
- "veiled for married women"
- "long with ribbon braids"
- "pinned up with ornate pins"
- "simple and practical"
female_slavic:
- "long with temple rings"
- "complex braids with ribbons"
- "crowned with woven bands"
- "flowing for maidens"
eye_colors:
- "ice blue"
- "sky blue"
- "deep blue"
- "steel blue"
- "pale blue"
- "bright blue"
- "gray"
- "storm gray"
- "silver gray"
- "pale gray"
- "slate gray"
- "green"
- "sea green"
- "pale green"
- "bright green"
- "forest green"
- "moss green"
- "hazel"
- "golden hazel"
- "green-hazel"
- "brown-hazel"
- "brown"
- "dark brown"
- "amber"
- "honey brown"
- "warm brown"
- "gray-blue"
- "blue-green"
- "blue-gray"
- "green-gray"
- "nearly black"
- "obsidian"
eye_shapes:
- "almond"
- "round"
- "hooded"
- "deep-set"
- "wide-set"
- "close-set"
- "upturned"
- "downturned"
- "monolid"
face_shapes:
- "oval"
- "round"
- "square"
- "heart-shaped"
- "angular"
- "chiseled"
- "long"
- "triangular"
- "diamond"
skin_tones:
norse:
- "fair"
- "tanned"
- "pale"
- "weathered fair"
- "tanned from sea"
- "ruddy"
- "wind-weathered"
- "porcelain"
- "alabaster"
- "cream"
- "freckled fair"
- "light"
- "milky white"
norse_icelandic:
- "fair"
- "pale with pink undertones"
- "wind-burned fair"
- "geothermal spring tanned"
- "freckled fair"
- "light with sun damage"
norse_greenlandic:
- "fair"
- "wind-weathered"
- "frost-burned"
- "pale with cold damage"
- "ruddy from extreme cold"
- "freckled with sun reflection burn"
norse_faroeislands:
- "fair"
- "wind-weathered"
- "sea-spray weathered"
- "ruddy from constant wind"
- "freckled and wind-burned"
norse_varangian:
- "fair"
- "light"
- "tanned from southern campaigns"
- "weathered from river routes"
- "sun-darkened from Greek service"
- "pale with southern sun exposure"
anglo_saxon:
- "fair"
- "pale"
- "ruddy"
- "light"
- "freckled"
frankish:
- "fair"
- "light olive"
- "pale"
- "continental fair"
slavic:
- "fair"
- "light"
- "tanned"
- "weathered fair"
- "eastern European fair"
- "pale with pink undertones"
byzantine:
- "olive"
- "Mediterranean"
- "light olive"
- "tanned"
- "golden olive"
- "dark"
arabic:
- "olive"
- "tanned"
- "dark"
- "black"
- "warm brown"
- "golden"
- "bronze"
- "deep tan"
- "honey"
irish:
- "fair"
- "pale"
- "freckled fair"
- "ruddy"
- "milky white"
facial_hair:
male_norse:
- "short trimmed beard"
- "full thick beard"
- "braided beard with rings"
- "thick mustache"
- "long forked beard"
- "beard with beads woven in"
- "goatee style"
male_arabic:
- "well-groomed beard"
- "neat mustache"
- "full beard oiled and combed"
- "pointed beard"
- "trimmed goatee"
male_byzantine:
- "clean-shaven in Roman style"
- "neat trimmed beard"
- "philosopher's beard"
- "short imperial style"
male_anglo_saxon:
- "full beard"
- "forked beard"
- "mustache only"
- "clean-shaven"
male_slavic:
- "full bushy beard"
- "long wild beard"
- "trimmed warrior style"
scars:
male:
- "thin battle scar across left cheek"
- "old sword wound on forehead"
- "healed axe wound on jaw"
- "faded scar on neck from past combat"
- "warrior's scars on forearms"
- "cut above right eyebrow"
- "slash mark across bridge of nose"
- "puckered scar on shoulder from arrow"
- "knife scar on ribs"
- "burn scars on hands from forge"
- "ritual scar patterns"
female: [] # NO SCARS FOR FEMALES
distinguishing_features:
positive:
- "kind eyes"
- "warm smile"
- "piercing gaze"
- "intense stare"
- "sharp features"
- "strong jaw"
- "high cheekbones"
- "expressive eyebrows"
- "dimples when smiling"
- "graceful neck"
- "striking beauty"
- "rugged features"
- "weathered face"
- "strong brow"
- "aquiline nose"
- "full lips"
- "delicate features"
- "noble bearing"
- "commanding presence"
- "serene expression"
personality_based:
- "warm friendly eyes with laugh lines"
- "watchful calculating eyes"
- "noble bearing with lifted chin"
- "serene otherworldly expression"
- "fierce intensity in the eyes"
- "shrewd intelligent gaze"
- "calm measured expression"
- "open honest expression"
- "cold calculating look barely hidden"
- "wild unpredictable energy"
- "disciplined controlled demeanor"
- "sadness lingering in eyes"
- "humor dancing in gaze"
beauty_levels:
- "plain"
- "average"
- "attractive"
- "beautiful"
- "handsome"
- "striking"
- "supernatural"
- "haunting"
- "rugged handsome"
- "classic beauty"
bra_sizes:
- "32A"
- "32B"
- "32C"
- "34A"
- "34B"
- "34C"
- "34D"
- "36B"
- "36C"
- "36D"
cup_sizes:
- "A"
- "B"
- "C"
- "D"
- "DD"
scent:
- "woodsmoke"
- "pine and fir"
- "leather"
- "sea air"
- "honey"
- "clean sweat"
- "herbal soap"
- "mead"
- "ale"
- "leather and steel"
- "wool and wool"
- "smoke and salt"
- "spices from trade"
- "frankincense"
- "myrrh"
- "roses" # Byzantine
- "sandalwood" # Arabic
- "jasmine" # Arabic
- "amber"
- "lavender"
- "rosemary"
- "thyme"
- "sage"
- "birch tar"
- "fish oil" # Fisherman
- "tanned hide" # Leatherworker
- "forge smoke" # Smith
- "sourdough" # Baker
- "herbs" # Healer
- "blood and steel" # Warrior after battle
# =============================================================================
# CULTURE-SPECIFIC CLOTHING
# =============================================================================
clothing:
norse_swedish:
era_descriptor: "9th century Swedish Viking"
male_clothing:
everyday:
- "wool tunic dyed in blue with tablet-woven trim"
- "linen undershirt beneath a wool overtunic with bronze clasps"
- "simple wool tunic with leather belt and iron buckle"
- "practical wool tunic tucked into trousers with leg wrappings"
- "layered tunics in earth tones with embroidered collar"
- "undyed wool tunic showing humble origins"
- "worn but clean wool tunic of a working man"
wealthy:
- "fine wool tunic with silver arm-rings showing wealth"
- "richly dyed red tunic with gold thread borders"
- "silk-trimmed tunic from eastern trade"
- "embroidered tunic showing jarl status"
- "tunic with elaborate tablet-woven bands in many colors"
working:
- "sturdy leather jerkin over simple tunic"
- "fisherman's oiled wool garments"
- "smith's leather apron over plain tunic"
- "farmer's practical undyed wool"
- "hunter's layered wool and leather"
female_clothing:
traditional:
- "linen underdress with wool apron-dress fastened by bronze brooches"
- "richly embroidered apron-dress with silver oval brooches"
- "practical wool apron-dress with bone toggles"
- "layered wool dresses with bead strings between brooches"
- "fine apron-dress with elaborate animal-head brooches"
simple:
- "wool dress in deep blue with tablet-woven bands at hem"
- "fine linen underdress with colorful wool overdress"
- "practical wool dress with leather belt and keys"
- "simple but well-made undyed wool dress"
- "warm layered dresses for northern winters"
wealthy:
- "silk-trimmed apron-dress showing eastern trade wealth"
- "dress with imported glass beads strung between brooches"
- "finely woven dress with gold-thread embroidery"
- "elegant wool dress with amber jewelry"
working:
- "sturdy wool dress tucked for work"
- "dairywoman's practical apron over simple dress"
- "weaver's dress with shuttle at belt"
skimpy:
- "bikini leather armor"
- "bikini chainmail armor"
- "bikini made from plant materials"
- "bikini made from linen"
- "bikini made from silk"
- "naked for battle mobility"
bondmaid:
- "naked with metal collar and metal ankle and wrist cuffs"
male_accessories:
- "Thor's hammer pendant"
- "silver arm-ring"
- "bronze cloak pin"
- "leather belt with iron fittings"
- "bone comb in belt pouch"
- "runic amulet"
- "wolf-tooth necklace"
- "boar-tusk pendant"
- "twisted silver neck-ring"
- "bronze finger rings"
- "iron oath-ring"
- "antler-handled seax"
- "amber bead at throat"
female_accessories:
- "silver oval brooches"
- "bead necklace of glass and amber"
- "bronze keys on chain"
- "silver finger rings"
- "woven headband"
- "amber pendant"
- "bronze arm-rings"
- "trefoil brooch"
- "crystal pendant"
- "silver needle case at belt"
- "spindle whorl"
- "carved bone comb"
- "linen head-covering for married women"
outerwear:
- "heavy wool cloak pinned at shoulder"
- "fur-lined hood"
- "sheepskin vest"
- "bear-fur mantle for status"
- "seal-skin cloak"
- "practical wool riding cloak"
- "oiled wool rain cloak"
- "wolf-fur collar on wool cloak"
- "simple rectangular cloak"
norse_danish:
era_descriptor: "9th century Danish Viking"
male_clothing:
wealthy:
- "richly dyed wool tunic showing Danelaw wealth"
- "silk-trimmed tunic acquired from English raids"
- "wool tunic with Frankish silver decorations"
- "fine linen shirt under embroidered wool tunic"
- "tunic with gold thread showing successful raider"
seafaring:
- "practical seafarer's wool garments"
- "oiled wool tunic for sea spray"
- "layered wool for long voyages"
- "sailor's simple but sturdy clothes"
everyday:
- "well-made wool tunic in Danish style"
- "comfortable tunic for trading business"
- "merchant's respectable wool garments"
status:
- "tunic trimmed with English silver"
- "clothes showing Continental influence"
- "garments displaying hack-silver wealth"
female_clothing:
wealthy:
- "elegant apron-dress with imported silk trim"
- "finely woven wool dress with gold-thread embroidery"
- "layered dresses showing wealth from raids"
- "silk-accented dress showing trade connections"
- "dress decorated with Frankish glass beads"
traditional:
- "practical wool dress with distinctive Danish brooch style"
- "apron-dress with characteristic Danish tortoise brooches"
- "warm wool layers for coastal living"
everyday:
- "well-kept wool dress of merchant's wife"
- "practical but pretty dress for market day"
- "simple wool dress with amber jewelry"
working:
- "sturdy dress for fisherman's wife"
- "trader's daughter's practical garments"
skimpy:
- "bikini leather armor"
- "bikini chainmail armor"
- "bikini made from plant materials"
- "bikini made from linen"
- "bikini made from silk"
- "naked for battle mobility"
bondmaid:
- "naked with metal collar and metal ankle and wrist cuffs"
male_accessories:
- "Frankish silver arm-ring"
- "gold neck-ring"
- "silver Thor's hammer"
- "ornate belt fittings"
- "hack-silver bracelet"
- "English coin pendant"
- "Danish-style boar brooch"
- "gold finger ring"
- "carved walrus-ivory"
- "Frankish sword fittings"
- "trade-silver jewelry"