forked from Andrettin/Wyrmsun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage_dwarven.lua
1466 lines (1284 loc) · 66.4 KB
/
language_dwarven.lua
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
-- _________ __ __
-- / _____// |_____________ _/ |______ ____ __ __ ______
-- \_____ \\ __\_ __ \__ \\ __\__ \ / ___\| | \/ ___/
-- / \| | | | \// __ \| | / __ \_/ /_/ > | /\___ \
-- /_______ /|__| |__| (____ /__| (____ /\___ /|____//____ >
-- \/ \/ \//_____/ \/
-- ______________________ ______________________
-- T H E W A R B E G I N S
-- Stratagus - A free fantasy real time strategy game engine
--
-- (c) Copyright 2015 by Andrettin
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
--
-- Dwarven; mix of Norse and German words used in dwarven contexts (ethnonyms, personal names or place names), as well as dwarven fantasy names
DefineLanguageWord("Ai", {
Language = "dwarven",
Type = "noun",
Meanings = {"Great-Grandfather"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 41.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 41.
NameTypes = {"person"} -- example: "Ai" (dwarf from Norse mythology who was a settler of Joruvellir)
})
DefineLanguageWord("Aig", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Aiglondur" (dwarven hero in The Hammer of Thursagan), "Aigaithas", "Aigaithil", "Aigaithing", "Aigaithol", "Aigalas", "Aigaling", "Aigalis", "Aigalol", "Aigalsil", "Aigatas", "Aigatis", "Aigatlos", "Aigatsil", "Aigatsol", "Aigatus", "Aigcatas", "Aigcatil", "Aigcating", "Aigcatis", "Aigcatsil", "Aigcatsol", "Aigcatus", "Aigdring", "Aigdris", "Aigdrlos", "Aigdrsil", "Aigdrsol", "Aigduras", "Aigdurlos", "Aigdursol", "Aigthaing", "Aigthais", "Aigthasil", "Aigthaus"
})
DefineLanguageWord("Aiglondur", { -- "Aig-lon-dur"? seems to follow similar naming conventions as the three-element names of the dwarven name list
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Aiglondur" (from Wesnoth, dwarven hero in The Hammer of Thursagan)
})
DefineLanguageWord("Aith", { -- infix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "infix", "singular", "person"} -- examples: "Aigaithas", "Aigaithil", "Aigaithing", "Aigaithol", "Alaithas", "Alaithis", "Alaithlos", "Alaithol", "Alaithsol", "Alaithus", "Anaithas", "Anaithil", "Anaithis", "Anaithing", "Anaithsil", "Anaithus", "Augaithas", "Augaithing", "Augaithsil", "Augaithus", "Dulaithil", "Dulaithing", "Dulaithlos", "Dulaithsil", "Dulaithsol", "Glamaithil", "Glamaithis", "Glamaithol", "Glamaithsol", "Gomaithas", "Gomaithil", "Gomaithol", "Gomaithsol", "Naraithil", "Naraithing", "Naraithol", "Naraithsil", "Naraithsol", "Naraithus", "Pelaithas", "Pelaithil", "Pelaithing", "Pelaithis", "Pelaithlos", "Pelaithol", "Pelaithsil", "Pelaithsol", "Trithaithas", "Trithaithil", "Trithaithis", "Trithaithlos", "Trithaithol", "Trithaithsil", "Trithaithsol", "Trithaithus"
})
DefineLanguageWord("Al", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 771.
Language = "dwarven",
Type = "adjective",
Meanings = {"Mighty", "All"}, -- meaning from Old Norse, but is also a prefix and infix used by Wesnoth's dwarven names
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- examples from Norse mythology: "Alvis" ("all-knowing"/"all-wise"), "Althjof" (mighty thief); examples from Wesnoth: "Alaithas", "Alaithis", "Alaithlos", "Alaithol", "Alaithsol", "Alaithus", "Alalas", "Alalil", "Alalol", "Alalsol", "Alalus", "Alatas", "Alatil", "Alating", "Alatlos", "Alatsil", "Alcatil", "Alcatis", "Alcatlos", "Alcatsil", "Aldras", "Aldril", "Aldring", "Aldris", "Aldrlos", "Aldrol", "Aldrsol", "Alduras", "Aldurlos", "Aldurol", "Althaas", "Althail", "Althalos", "Althaol", "Althasil", "Althasol", "Althaus"
"compound", "prefix", "singular", "province", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains", -- no examples, but seems sensible in face of a general lack of examples
"compound", "infix", "singular", "person" -- infix used by Wesnoth's dwarven names; examples: "Aigalas", "Aigaling", "Aigalis", "Aigalol", "Aigalsil", "Alalas", "Alalil", "Alalol", "Alalsol", "Alalus", "Analil", "Anallos", "Analol", "Analsil", "Analus", "Augalas", "Augaling", "Augalol", "Dulalas", "Dulaling", "Dulalis", "Dulalsil", Glamalil", "Glamaling", "Glamalis", "Glamallos", "Glamalsil", "Glamalus", "Gomalil", "Gomalis", "Gomalus", "Naralas", "Naralil", "Naralsil", "Naralus", "Pelalil", "Pelaling", "Pelalis", "Pelalsil", "Pelalsol", "Pelalus", "Trithalis", "Trithalol"
}
})
DefineLanguageWord("Alberich", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Alberich" (dwarf from German sagas)
})
DefineLanguageWord("Alf", {
Language = "dwarven",
Type = "noun",
Meanings = {"Elf"},
NameTypes = {"person"}, -- example: "Alf" (dwarf from Norse mythology who was a settler of Joruvellir)
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Gandalf" (Norse mythology), "Vindalf" (Norse mythology)
-- should be available as a name only if the dwarven civilization in question has met elves?
})
DefineLanguageWord("Alfrigg", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Alfrigg" (dwarf from Norse mythology)
})
DefineLanguageWord("An", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Anaithas", "Anaithil", "Anaithing", "Anaithis", "Anaithsil", "Anaithus", "Analil", "Anallos", "Analol", "Analsil", "Analus", "Anatas", "Anating", "Anatis", "Anatol", "Anatsol", "Ancatas", "Ancatil", "Ancatol", "Ancatus", "Andril", "Andris", "Andrlos", "Andrus", "Anduril", "Andurol", "Andursol", "Andurus", "Anthaas", "Anthaing", "Anthais", "Anthaol", "Anthasil", "Anthasol", "Anthaus"
})
DefineLanguageWord("Andvari", {
Language = "dwarven",
Type = "noun",
Meanings = {"Fish of Prey", "Gurnard"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 21.
NumberCaseInflections = {
"singular", "genitive", "Andvara" -- as in "Andvaranaut"
},
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 21.
NameTypes = {"person"}, -- example: "Andvari" (gurnard-shaped dwarf from Norse mythology whose hoard and golden ring were stolen by Loki)
AffixNameTypes = {
"compound", "prefix", "singular", "genitive", "item-ring", -- example: "Andvaranaut" (golden ring made by Andvari)
}
})
DefineLanguageWord("Angarthing", { -- "An-garth-ing"? seems to follow similar naming conventions as the three-element names of the dwarven name list
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Angarthing" (from Wesnoth, The Hammer of Thursagan)
})
DefineLanguageWord("As", { -- suffix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Aigaithas", "Aigalas", "Aigatas", "Aigcatas", "Aigduras", "Alaithas", "Alalas", "Alatas", "Aldras", "Alduras", "Althaas", "Anaithas", "Anatas", "Ancatas", "Anthaas", "Augaithas", "Augalas", "Augcatas", "Augdras", "Augduras", "Dulalas", "Dulduras", "Glamcatas", "Glamdras", "Glamduras", "Glamthaas", "Gomaithas", "Gomatas", "Gomdras", "Gomthaas", "Naralas", "Nardras", "Narduras", "Pelaithas", "Peldras", "Pelthaas", "Trithaithas", "Trithatas", "Triththaas"
})
DefineLanguageWord("At", { -- infix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "infix", "singular", "person"} -- examples: "Aigatas", "Aigatis", "Aigatlos", "Aigatsil", "Aigatsol", "Aigatus", "Alatas", "Alatil", "Alating", "Alatlos", "Alatsil", "Anatas", "Anating", "Anatis", "Anatol", "Anatsol", "Augating", "Augatlos", "Augatol", "Augatsil", "Augatsol", "Dulatil", "Dulating", "Dulatol", "Dulatsol", "Dulatus", "Glamatil", "Glamatus", "Gomatas", "Gomatil", "Gomating", "Gomatis", "Gomatlos", "Gomatol", "Naratlos", "Naratol", "Naratsil", "Pelatil", "Pelating", "Pelatis", "Pelatol", "Pelatsil", "Pelatus", "Trithatas", "Trithatil", "Trithatlos", "Trithatsol"
})
DefineLanguageWord("Aug", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Augaithas", "Augaithing", "Augaithsil", "Augaithus", "Augalas", "Augaling", "Augalol", "Augating", "Augatlos", "Augatol", "Augatsil", "Augatsol", "Augcatas", "Augcatil", "Augcatis", "Augcatol", "Augcatsil", "Augcatus", "Augdras", "Augdris", "Augdrsil", "Augdrus", "Augduras", "Augduril", "Augduring", "Augdurol", "Augdursol", "Augdurus", "Augthail", "Augthais", "Augthalos", "Augthaol"
})
DefineLanguageWord("Aur", { -- "Aurr" in Old Icelandic; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 34.
Language = "dwarven",
Type = "noun",
Meanings = {"Wet Clay", "Loam"},
Gender = "masculine",
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Aurvang" (dwarf from Norse mythology)
"compound", "prefix", "singular", "province", -- example: "Aurvang" (wetlands in Norse mythology, through which a group of dwarves passed to migrate to Joruvellir; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 771.)
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Austri", {
Language = "dwarven",
Type = "noun",
Meanings = {"Eastern"}, -- source gives meaning as "the Eastern"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 771.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 771.
NameTypes = {"person"} -- example: "Austri" (dwarf from Norse mythology; Source: Henry Adams Bellows (transl.), "The Poetic Edda", p. 101.)
})
DefineLanguageWord("Bafur", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Bafur" (dwarf from Norse mythology)
})
DefineLanguageWord("Baglur", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Baglur" (from Wesnoth, The Scepter of Fire; veteran warrior and member of the party of dwarves who handled the crafting of the Sceptre of Fire)
})
DefineLanguageWord("Bari", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Bari" (dwarf from Norse mythology)
})
DefineLanguageWord("Berling", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Berling" (dwarf from Norse mythology)
})
DefineLanguageWord("Bibung", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Bibung" (dwarf from Norse mythology)
})
DefineLanguageWord("Bifur", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Bifur" (dwarf from Norse mythology)
})
DefineLanguageWord("Bladnir", {
Language = "dwarven",
Type = "adjective",
Meanings = {"Bladed"},
-- example: "Skidbladnir" (ship made by the sons of Ivaldi, name means "Wooden-Bladed")
-- should add a category for ship name suffixes
})
DefineLanguageWord("Blindi", { -- this is the participle past
Language = "dwarven",
Type = "verb",
Meanings = {"Blinded"},
-- infinitive form?
Participles = {
"past", "Blindi"
},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- example: "Solblindi" (Norse mythology)
})
DefineLanguageWord("Bodn", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"item-potion"} -- example: "Bodn" (jar which contained some of the mead of poetry)
})
DefineLanguageWord("Bombor", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Bombor" (dwarf from Norse mythology)
})
DefineLanguageWord("Brising", { -- also name of a group of four dwarves (or the dwarves in general), the Brisings
Language = "dwarven",
Type = "noun",
Meanings = {"Flame"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 772.
NumberCaseInflections = {
"singular", "genitive", "Brisinga" -- as in "Brisingamen"
},
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 772.
AffixNameTypes = {
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "province", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "genitive", "item-amulet", -- example: "Brisingamen" (golden necklace made by four dwarves, the Brisings)
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Brokk", {
Language = "dwarven",
Type = "noun",
Meanings = {"Badger", "Trotter of a Horse"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 81.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 81.
NameTypes = {"person"} -- example: "Brokk" (dwarf from Norse mythology who was an expert smith and brother of Eitri)
})
DefineLanguageWord("Burin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Burin" (from Wesnoth, The Rise of Wesnoth)
})
DefineLanguageWord("Cat", { -- infix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "infix", "singular", "person"} -- examples: "Aigcatas", "Aigcatil", "Aigcating", "Aigcatis", "Aigcatsil", "Aigcatsol", "Aigcatus", "Alcatil", "Alcatis", "Alcatlos", "Alcatsil", "Ancatas", "Ancatil", "Ancatol", "Ancatus", "Augcatas", "Augcatil", "Augcatis", "Augcatol", "Augcatsil", "Augcatus", "Dulcatil", "Dulcating", "Dulcatlos", "Dulcatol", "Dulcatsil", "Dulcatsol", "Glamcatas", "Glamcatil", "Glamcating", "Glamcatsil", "Glamcatus", "Gomcatil", "Gomcatis", "Gomcatlos", "Narcating", "Narcatis", "Narcatol", "Narcatsil", "Narcatsol", "Pelcating", "Pelcatlos", "Pelcatol", "Pelcatsil", "Trithcatlos", "Trithcatsol", "Trithcatus"
})
DefineLanguageWord("Dain", {
Language = "dwarven",
Type = "noun",
Meanings = {"Dead", "Deceased"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 97.
NumberCaseInflections = {
"singular", "genitive", "Dains" -- as in "Dainsleif"
},
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 97.
NameTypes = {"person"}, -- example: "Dain" (dwarf from Norse mythology)
AffixNameTypes = {"compound", "prefix", "singular", "genitive", "item-sword"} -- example: "Dainsleif"
})
DefineLanguageWord("Delling", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Delling" (dwarf from Norse mythology)
})
DefineLanguageWord("Dolgthvari", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Dolgthvari" (dwarf from Norse mythology)
})
DefineLanguageWord("Dori", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Dori" (dwarf from Norse mythology)
})
DefineLanguageWord("Dr", { -- infix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "infix", "singular", "person"} -- examples: "Aigdring", "Aigdris", "Aigdrlos", "Aigdrsil", "Aigdrsol", "Aldras", "Aldril", "Aldris", "Aldring", "Aldrlos", "Aldrol", "Aldrsol", "Andril", "Andris", "Andrlos", "Andrus", "Augdras", "Augdris", "Augdrsil", "Augdrus", "Duldril", "Duldris", "Duldrlos", "Duldrol", "Duldrsil", "Duldrus", "Glamdras", "Glamdril", "Glamdrlos", "Glamdrsol", "Gomdras", "Gomdril", "Gomdring", "Gomdris", "Gomdrol", "Gomdrsil", "Nardras", "Nardril", "Nardring", "Nardris", "Nardrol", "Nardrsil", "Nardrsol", "Nardrus", "Peldras", "Peldril", "Peldrsol", "Peldrus", "Trithdril", "Trithdring", "Trithdrlos", "Trithdris", "Trithdrol", "Trithdrsol", "Trithdrus"
})
DefineLanguageWord("Draupnir", {
Language = "dwarven",
Type = "noun",
Meanings = {"Dropper"},
Gender = "masculine", -- presumably, since it's the name of a male dwarf?
NameTypes = {
"person", -- example: "Draupnir" (dwarf from Norse mythology)
"item-ring" -- example: "Draupnir" (solid gold arm-ring made by the dwarven brothers Brokk and Eitri; maybe should be a different item type than ring, as it is actually an arm-ring?)
},
})
DefineLanguageWord("Duf", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Duf" (dwarf from Norse mythology)
})
DefineLanguageWord("Dul", { -- prefix used by Wesnoth's dwarven names
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Dulaithil", "Dulaithing", "Dulaithlos", "Dulaithsil", "Dulaithsol", "Dulalas", "Dulaling", "Dulalis", "Dulalsil", "Dulatil", "Dulating", "Dulatol", "Dulatsol", "Dulatus", "Dulcatil", "Dulcating", "Dulcatlos", "Dulcatol", "Dulcatsil", "Dulcatsol", "Duldril", "Duldris", "Duldrlos", "Duldrol", "Duldrsil", "Duldrus", "Dulduras", "Dulduring", "Duldursil", "Duldurus", "Dulthalos", "Dulthasil", "Dulthasol", "Dulthaus"
})
DefineLanguageWord("Dulcatulos", { -- "Dul-catu-los", or "Dul-cat-ulos"? seems to follow similar naming conventions as the three-element names of the dwarven name list
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Dulcatulos" (from Wesnoth, The Hammer of Thursagan)
})
DefineLanguageWord("Dulsi", { -- not entirely clear if this is the name of a particular dwarf, or if it can also mean "dwarf"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 109.
Language = "dwarven",
Type = "noun",
Meanings = {"Poet"},
Gender = "masculine",
NameTypes = {"person"} -- example: "Dulsi" (dwarf from Norse mythology)
})
DefineLanguageWord("Dur", { -- infix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Dursil" (from Wesnoth, The Rise of Wesnoth)
"compound", "infix", "singular", "person" -- examples: "Aigduras", "Aigdurlos", "Aigdursol", "Alduras", "Aldurlos", "Aldurol", "Anduril", "Andurol", "Andursol", "Andurus", "Augduras", "Augduril", "Augduring", "Augdurol", "Augdursol", "Augdurus", "Dulduras", "Dulduring", "Duldursil", "Duldurus", "Glamduras", "Glamduril", "Glamduring", "Glamduris", "Glamdursol", "Gomduris", "Gomdurlos", "Gomdursol", "Gomdursil", "Gomdurus", "Narduras", "Narduril", "Nardurol", "Pelduril", "Pelduring", "Pelduris", "Peldurol", "Peldursol", "Peldurus", "Trithduril", "Trithduring", "Trithdurlos", "Trithdurol", "Trithdursil", "Trithdurus"
}
})
DefineLanguageWord("Durâhn", {
Language = "dwarven",
Type = "noun",
Meanings = {},
Gender = "masculine",
NameTypes = {"person"} -- example: "Durâhn" (from Dyson Logos' The Tomb of Durâhn Oakenshield)
})
DefineLanguageWord("Durin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Durin" (dwarf from Norse mythology who was Modsognir's deputy)
})
DefineLanguageWord("Durstorn", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Durstorn" (from Wesnoth, The Scepter of Fire; chieftain of Rugnur's tribe)
})
DefineLanguageWord("Dvalin", {
Language = "dwarven",
Type = "noun",
Meanings = {}, -- maybe "Delayer" or "Delayed"?; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 110.
NameTypes = {"person"}, -- example: "Dvalin" (dwarf from Norse mythology; gave the knowledge of runes to the dwarves; one of the four who crafted the Necklace of the Brisings)
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- example: "Víg-dvalinn" (dwarf from Norse mythology; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 715.)
})
DefineLanguageWord("Dverg", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 110.
Language = "dwarven",
Type = "noun",
Meanings = {"Dwarf"},
Gender = "masculine"
})
DefineLanguageWord("Dyrgja", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 111.
Language = "dwarven",
Type = "noun",
Meanings = {"Female Dwarf"},
Gender = "feminine"
})
DefineLanguageWord("Eggerich", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Eggerich" (dwarf from German sagas)
})
DefineLanguageWord("Eikin", {
Language = "dwarven",
Type = "adjective",
Meanings = {"Oaken"},
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Eikinskjaldi" (Norse mythology)
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "province" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Eitri", { -- can also be spelled as "Sindri"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 529.
Language = "dwarven",
Type = "noun",
Meanings = {"Forger"},
Gender = "masculine",
NameTypes = {"person"} -- example: "Sindri"/"Eitri" (dwarf from Norse mythology; expert smith and brother of Brokk)
})
DefineLanguageWord("Fal", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Fal" (dwarf from Norse mythology)
})
DefineLanguageWord("Fid", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Fid" (dwarf from Norse mythology)
})
DefineLanguageWord("Fili", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Fili" (dwarf from Norse mythology)
})
DefineLanguageWord("Fjalar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Fjalar" (dwarf from Norse mythology who, with the help of his brother Galar, brew Kvasir's remains into the Mead of Poetry)
})
DefineLanguageWord("Frag", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Frag" (dwarf from Norse mythology)
})
DefineLanguageWord("Frar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Frar" (dwarf from Norse mythology)
})
DefineLanguageWord("Frosti", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Frosti" (dwarf from Norse mythology)
})
DefineLanguageWord("Fundin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Fundin" (dwarf from Norse mythology)
})
DefineLanguageWord("Galar", {
Language = "dwarven",
Type = "noun",
Meanings = {"Enchanter"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 187.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 187.
NameTypes = {"person"} -- example: "Galar" (dwarf from Norse mythology who - with the help of his brother Fjalar - brew Kvasir's remains into the Mead of Poetry)
})
DefineLanguageWord("Gand", {
Language = "dwarven",
Type = "adjective",
Meanings = {"Magic"},
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Gandalf" (Norse mythology)
"compound", "prefix", "singular", "province", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Ginnar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Ginnar" (dwarf from Norse mythology)
})
DefineLanguageWord("Glam", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Glamaithil", "Glamaithis", "Glamaithol", "Glamaithsol", "Glamalil", "Glamaling", "Glamalis", "Glamallos", "Glamalsil", "Glamalus", "Glamatil", "Glamatus", "Glamcatas", "Glamcatil", "Glamcating", "Glamcatsil", "Glamcatus", "Glamdras", "Glamdril", "Glamdrlos", "Glamdrsol", "Glamduras", "Glamduril", "Glamduring", "Glamduris", "Glamdursol", "Glamthaas", "Glamthaol", "Glamthasil", "Glamthasol", "Glamthaus"
})
DefineLanguageWord("Gleipnir", {
Language = "dwarven",
Type = "noun",
Meanings = {},
-- example: "Gleipnir" (fetter made by dwarves to bind the wolf Fenrir)
})
DefineLanguageWord("Glinar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Glinar" (from Wesnoth, The Scepter of Fire)
})
DefineLanguageWord("Gloin", { -- given by Cleasby and Vigfusson as "Glói", but elsewhere given as "Gloin"/"Glóin"
Language = "dwarven",
Type = "noun",
Meanings = {"Light-Colored Dog"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 205.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 205.
NameTypes = {"person"} -- example: "Gloin" (dwarf from Norse mythology)
})
DefineLanguageWord("Glomin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Glomin" (from Wesnoth; the only name in Wesnoth's dwarven name list to not obbey the three-part compound pattern)
})
DefineLanguageWord("Glonoin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Glonoin" (from Wesnoth, The Scepter of Fire; chieftain of the Shorbear clan)
})
DefineLanguageWord("Gneissus", {
Language = "dwarven",
Type = "noun",
Meanings = {},
Gender = "feminine",
---- NameTypes = {"person"} -- example: "Gneissus" (from Dyson Logos' The Tomb of Durâhn Oakenshield)
})
DefineLanguageWord("Goldemar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Goldemar" (dwarf from German sagas)
})
DefineLanguageWord("Gom", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Gomaithas", "Gomaithil", "Gomaithol", "Gomaithsol", "Gomalil", "Gomalis", "Gomalus", "Gomatas", "Gomatil", "Gomating", "Gomatis", "Gomatlos", "Gomatol", "Gomcatil", "Gomcatis", "Gomcatlos", "Gomdras", "Gomdril", "Gomdring", "Gomdris", "Gomdrol", "Gomdrsil", "Gomduris", "Gomdurlos", "Gomdursil", "Gomdursol", "Gomdurus", "Gomthaas", "Gomthalos", "Gomthasol"
})
DefineLanguageWord("Gram", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"item-sword"} -- example: "Gram" (sword made by the dwarf Regin)
})
DefineLanguageWord("Grerr", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Grerr" (dwarf from Norse mythology)
})
DefineLanguageWord("Grimnir", { -- meaning is from Old Norse, while the occurrence of the name is from Wesnoth (but it seems clear that the Wesnoth name was based on the Old Norse one)
Language = "dwarven",
Type = "noun",
Meanings = {"Hooded One"}, -- Source: Source: Henry Adams Bellows (transl.), "The Poetic Edda", p. 85.
Gender = "masculine",
NameTypes = {"person"} -- example: "Grimnir" (dwarven pathfinder from Wesnoth, Under the Burning Suns)
})
DefineLanguageWord("Gungnir", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"item-javelin"} -- example: "Gungnir" (throwing spear made by the sons of Ivaldi)
})
DefineLanguageWord("Hamel", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Hamel" (from Wesnoth, Northern Rebirth and The Hammer of Thursagan)
})
DefineLanguageWord("Hannar", { -- source gives name as "Hannarr"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 239.
Language = "dwarven",
Type = "noun",
Meanings = {"Skillful", "Artist"}, -- source gives meaning as "the Skillful, the Artist"
Gender = "masculine",
NameTypes = {"person"} -- example: "Hannar" (dwarf from Norse mythology; source indicates the dwarf being present in the Voluspo, but in other consulted translations of that text it was nowhere to be found)
})
DefineLanguageWord("Har", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Har" (dwarf from Norse mythology)
})
DefineLanguageWord("Haug", { -- from Norse mythology, "Svarinshaug" = "Svarin's Mound", "haug" = "mound"
Language = "dwarven",
Type = "noun",
Meanings = {"Mound"},
AffixNameTypes = {
"compound", "suffix", "singular", "province", -- example: "Svarinshaug" ("Svarin's Mound"; from Norse mythology)
"compound", "suffix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "suffix", "singular", "terrain-hills", -- example: "Svarinshaug" ("Svarin's Mound"; from Norse mythology)
"compound", "suffix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Haur", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Haur" (dwarf from Norse mythology)
})
DefineLanguageWord("Heptifili", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Heptifili" (dwarf from Norse mythology)
})
DefineLanguageWord("Hledj", {
Language = "dwarven",
Type = "noun",
Meanings = {"Sound", "Silence", "Hearing", "Listening"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, pp. 271-272.
Gender = "neuter",
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Hledjolf" (dwarf from Norse mythology; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 272.)
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "province" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Hornbori", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Hornbori" (dwarf from Norse mythology)
})
DefineLanguageWord("Hugstari", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Hugstari" (dwarf from Norse mythology)
})
DefineLanguageWord("Il", { -- suffix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Aigaithil", "Aigcatil", "Alalil", "Alatil", "Alcatil", "Aldril", "Althail", "Anaithil", "Analil", "Ancatil", "Andril", "Anduril", "Augcatil", "Augduril", "Augthail", "Dulaithil", "Dulatil", "Dulcatil", "Duldril", "Glamaithil", "Glamalil", "Glamatil", "Glamcatil", "Glamdril", "Glamduril", "Gomaithil", "Gomalil", "Gomatil", "Gomcatil", "Gomdril", "Naraithil", "Naralil", "Nardril", "Narduril", "Pelaithil", "Pelalil", "Pelatil", "Peldril", "Pelduril", "Pelthail", "Trithaithil", "Trithatil", "Trithdril", "Trithduril", "Triththail"
})
DefineLanguageWord("Ing", { -- suffix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Aigaithing", "Aigaling", "Aigcating", "Aigdring", "Aigthaing", "Alating", "Aldring", "Anaithing", "Anating", "Anthaing", "Augaithing", "Augaling", "Augating", "Augduring", "Dulaithing", "Dulaling", "Dulating", "Dulcating", "Dulduring", "Glamaling", "Glamcating", "Glamduring", "Gomating", "Gomdring", "Naraithing", "Narcating", "Nardring", "Pelaithing", "Pelaling", "Pelating", "Pelcating", "Pelduring", "Trithdring", "Trithduring", "Triththaing"
})
DefineLanguageWord("Ingi", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Ingi" (dwarf from Norse mythology)
})
DefineLanguageWord("Iri", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Iri" (dwarf from Norse mythology)
})
DefineLanguageWord("Is", { -- suffix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Aigalis", "Aigatis", "Aigcatis", "Aigdris", "Aigthais", "Alaithis", "Alcatis", "Aldris", "Anaithis", "Anatis", "Andris", "Anthais", "Augcatis", "Augdris", "Augthais", "Dulalis", "Duldris", "Glamaithis", "Glamalis", "Glamduris", "Gomalis", "Gomatis", "Gomcatis", "Gomdris", "Gomduris", "Narcatis", "Nardris", "Pelaithis", "Pelalis", "Pelatis", "Pelduris", "Trithaithis", "Trithalis", "Trithdris"
})
DefineLanguageWord("Isuldan", {
Language = "dwarven",
Type = "noun",
Meanings = {},
Gender = "masculine",
NameTypes = {"person"} -- example: "Isuldan" (from Dyson Logos' The Tomb of Durâhn Oakenshield)
})
DefineLanguageWord("Ivaldi", {
Language = "dwarven",
Type = "noun",
Meanings = {"Mighty"}, -- source gives meaning as "the Mighty"; Source: Henry Adams Bellows (transl.), "The Poetic Edda", p. 101.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 319.
NameTypes = {"person"} -- example: "Ivaldi" (dwarf from Norse mythology whose sons were mastersmiths)
})
DefineLanguageWord("Jari", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Jari" (dwarf from Norse mythology)
})
DefineLanguageWord("Joru", { -- from Norse mythology, "Joruvellir" = "Fields of Sand", "Joru" = "Sand"
Language = "dwarven",
Type = "noun",
Meanings = {"Sand"},
Uncountable = true,
AffixNameTypes = {
"compound", "prefix", "singular", "province", -- example: "Joruvellir" (Norse mythology)
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Jung", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 327.
Language = "dwarven",
Type = "adjective",
Meanings = {"Young"},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- example: "Nidjung" (Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 454)
})
DefineLanguageWord("Kal", {
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"separate", "prefix", "singular", "settlement"} -- example: "Kal Kartha" (from Wesnoth)
})
DefineLanguageWord("Karrag", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Karrag" (from Wesnoth, The Hammer of Thursagan)
})
DefineLanguageWord("Kartha", {
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"separate", "suffix", "singular", "settlement"} -- example: "Kal Kartha" (from Wesnoth)
})
DefineLanguageWord("Kili", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Kili" (dwarf from Norse mythology)
})
DefineLanguageWord("Kinan", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Kinan" (from Wesnoth, The Scepter of Fire)
})
DefineLanguageWord("Knalga", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"settlement"} -- example: "Knalga" (from Wesnoth)
})
DefineLanguageWord("Kuhnar", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Kuhnar" (from Wesnoth, The Scepter of Fire)
})
DefineLanguageWord("Laurin", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Laurin" (dwarf from German sagas)
})
DefineLanguageWord("Leif", {
Language = "dwarven",
Type = "noun",
Meanings = {"Patrimony"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 381.
Gender = "feminine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 381.
AffixNameTypes = {"compound", "suffix", "singular", "item-sword"} -- example: "Dainsleif"
})
DefineLanguageWord("Lit", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Lit" (dwarf from Norse mythology)
})
DefineLanguageWord("Lofar", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 397.
Language = "dwarven",
Type = "noun",
Meanings = {},
Gender = "masculine",
NameTypes = {"person"} -- example: "Lofar" (dwarf from Norse mythology who was a descendant of the settlers of Joruvellir)
})
DefineLanguageWord("Loni", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Loni" (dwarf from Norse mythology)
})
DefineLanguageWord("Los", { -- suffix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
AffixNameTypes = {"compound", "suffix", "singular", "person"} -- examples: "Aigatlos", "Aigdrlos", "Aigdurlos", "Alaithlos", "Alatlos", "Alcatlos", "Aldrlos", "Anallos", "Andrlos", "Aldurlos", "Althalos", "Augatlos", "Augthalos", "Dulaithlos", "Dulcatlos", "Duldrlos", "Dulthalos", "Glamallos", "Glamdrlos", "Gomatlos", "Gomcatlos", "Gomdurlos", "Gomthalos", "Naratlos", "Narthalos", "Pelaithlos", "Pelcatlos", "Trithaithlos", "Trithatlos", "Trithcatlos", "Trithdrlos", "Trithdurlos"
})
DefineLanguageWord("Lyr", { -- Source: Kevin Crossley-Holland, "The Norse Myths", 1980, p. 247.
Language = "dwarven",
Type = "adjective",
Meanings = {"Heat-Holding"},
NameTypes = {"settlement"} -- example: "Lyr" (hall built by dwarves in Norse mythology)
})
DefineLanguageWord("Men", {
Language = "dwarven",
Type = "noun",
Meanings = {"Necklace"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 772.
Gender = "neuter", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 772.
AffixNameTypes = {"compound", "suffix", "singular", "item-amulet"} -- example: "Brisingamen" (golden necklace made by four dwarves, the Brisings)
})
DefineLanguageWord("Mjod", {
Language = "dwarven",
Type = "noun",
Meanings = {"Mead"},
Uncountable = true,
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Mjodvitnir" (Norse mythology)
"compound", "prefix", "singular", "province", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Mjollnir", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"item-mace"} -- example: "Mjollnir" (iron hammer made by the dwarven brothers Brokk and Eitri)
})
DefineLanguageWord("Modsognir", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Modsognir" (the first and mightiest of the dwarves in Norse mythology)
})
DefineLanguageWord("Nabbi", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 445.
Language = "dwarven",
Type = "noun",
Meanings = {"Small Protuberance on the Skin", "Small Protuberance on Greensward"},
Gender = "masculine",
NameTypes = {"person"} -- example: "Nabbi" (dwarf from Norse mythology)
})
DefineLanguageWord("Naglering", { -- possibly "Nagle-ring"?
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"item-sword"} -- example: "Naglering" (sword forged by the dwarf Alberich)
})
DefineLanguageWord("Nain", {
Language = "dwarven",
Type = "adjective",
Meanings = {"Near To", "Closely Related", "Near Kinsman Of"}, -- Old Norse "Náinn"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 448.
NameTypes = {"person"} -- example: "Nain" (dwarf from Norse mythology)
})
DefineLanguageWord("Nar", { -- prefix used by Wesnoth's dwarven names; not necessarily a noun
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"}, -- example: "Nar" (dwarf from Norse mythology)
AffixNameTypes = {"compound", "prefix", "singular", "person"} -- examples: "Naraithil", "Naraithing", "Naraithol", "Naraithsil", "Naraithsol", "Naraithus", "Naralas", "Naralil", "Naralsil", "Naralus", "Naratlos", "Naratol", "Naratsil", "Narcating", "Narcatis", "Narcatol", "Narcatsil", "Narcatsol", "Nardras", "Nardril", "Nardring", "Nardris", "Nardrol", "Nardrsil", "Nardrsol", "Nardrus", "Narduras", "Narduril", "Nardurol", "Narthalos", "Narthaol"
})
DefineLanguageWord("Naut", {
Language = "dwarven",
Type = "noun",
Meanings = {"A Gift or Booty from a Person"}, -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 447.
Gender = "masculine", -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 447.
AffixNameTypes = {"compound", "suffix", "singular", "item-ring"} -- example: "Andvaranaut" (gold ring made by Andvari and stolen by Loki; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 21.)
})
DefineLanguageWord("Nefi", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 450.
Language = "dwarven",
Type = "noun",
Meanings = {"Cognate Kinsman"},
Gender = "masculine",
NameTypes = {"person"} -- example: "Nefi" (dwarf from Norse mythology)
})
DefineLanguageWord("Neglur", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Neglur" (from Wesnoth, The Scepter of Fire)
})
DefineLanguageWord("Nid", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 454.
Language = "dwarven",
Type = "noun",
Meanings = {"Wane of the Moon, No Moon"},
Gender = "feminine",
AffixNameTypes = {
"compound", "prefix", "singular", "person", -- example: "Nidjung" (Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 454)
"compound", "prefix", "singular", "province", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "settlement", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-hills", -- no examples, but seems sensible in face of a general lack of examples
"compound", "prefix", "singular", "terrain-mountains" -- no examples, but seems sensible in face of a general lack of examples
}
})
DefineLanguageWord("Nidi", { -- Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 454.
Language = "dwarven",
Type = "noun",
Meanings = {"Wane of the Moon, No Moon"}, -- approximately, from "Nid"
Gender = "masculine",
NameTypes = {"person"} -- example: "Nidi" (dwarf from Norse mythology)
})
DefineLanguageWord("Niping", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Niping" (dwarf from Norse mythology)
})
DefineLanguageWord("Noiraran", {
Language = "dwarven",
Type = "noun",
Meanings = {},
NameTypes = {"person"} -- example: "Noiraran" (from Wesnoth, The Scepter of Fire)
})
DefineLanguageWord("Nordri", {
Language = "dwarven",
Type = "noun",
Meanings = {"Northern"}, -- source gives meaning as "the Northern"; Source: Richard Cleasby and Gudbrand Vigfusson, "An Icelandic-English Dictionary", 1874, p. 457.
Gender = "masculine",
NameTypes = {"person"} -- example: "Nordri" (dwarf from Norse mythology; Source: Henry Adams Bellows (transl.), "The Poetic Edda", p. 101.)