Module:number list/data/art-dtk

Hello, you have come here looking for the meaning of the word Module:number list/data/art-dtk. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:number list/data/art-dtk, but we will also tell you about its etymology, its characteristics and you will know how to say Module:number list/data/art-dtk in singular and plural. Everything you need to know about the word Module:number list/data/art-dtk you have here. The definition of the word Module:number list/data/art-dtk will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:number list/data/art-dtk, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This module contains data on various types of numbers in Dothraki.

Number Cardinal
1 at
2 akat
3 sen
4 tor
5 mek
6 zhinda
7 fekh
8 ori
9 qazat
10 thi
11 atthi
12 akatthi
13 senthi
14 torthi
15 mekthi
16 zhindathi
17 fekhthi
18 orithi
19 qazatthi
20 chakat
21 atchakat
22 akatchakat
23 senchakat
24 torchakat
25 mekchakat
26 zhindachakat
27 fekhchakat
28 orichakat
29 qazatchakat
30 chisen
31 atchisen
32 akatchisen
33 senchisen
34 torchisen
35 mekchisen
36 zhindachisen
37 fekhchisen
38 orichisen
39 qazatchisen
40 chitor
41 atchitor
42 akatchitor
43 senchitor
44 torchitor
45 mekchitor
46 zhindachitor
47 fekhchitor
48 orichitor
49 qazatchitor
50 chimek
51 atchimek
52 akatchimek
53 senchimek
54 torchimek
55 mekchimek
56 zhindachimek
57 fekhchimek
58 orichimek
59 qazatchimek
60 chizhinda
61 atchizhinda
62 akatchizhinda
63 senchizhinda
64 torchizhinda
65 mekchizhinda
66 zhindachizhinda
67 fekhchizhinda
68 orichizhinda
69 qazatchizhinda
70 chifekh
71 atchifekh
72 akatchifekh
73 senchifekh
74 torchifekh
75 mekchifekh
76 zhindachifekh
77 fekhchifekh
78 orichifekh
79 qazatchifekh
80 chori
81 atchori
82 akatchori
83 senchori
84 torchori
85 mekchori
86 zhindachori
87 fekhchori
88 orichori
89 qazatchori
90 chiqazat
91 atchiqazat
92 akatchiqazat
93 senchiqazat
94 torchiqazat
95 mekchiqazat
96 zhindachiqazat
97 fekhchiqazat
98 orichiqazat
99 qazatchiqazat
100 ken
1,000 dalen

local export = {}

local unpack = unpack or table.unpack -- Lua 5.2 compatibility

local numbers = {}
export.numbers = numbers


numbers = {
	cardinal = "at"
}

numbers = {
	cardinal = "akat"
}

numbers = {
	cardinal = "sen"
}

numbers = {
	cardinal = "tor"
}

numbers = {
	cardinal = "mek"
}

numbers = {
	cardinal = "zhinda"
}

numbers = {
	cardinal = "fekh"
}

numbers = {
	cardinal = "ori"
}

numbers = {
	cardinal = "qazat"
}

local function unpack_ipairs(t)
	local i = 0
	return function()
		i = i + 1
		if t then
			return i, unpack(t)
		end
	end
end

for i, suff_tens in unpack_ipairs {
	{ "thi" },
	{ "chakat" },
	{ "chisen" },
	{ "chitor" },
	{ "chimek" },
	{ "chizhinda" },
	{ "chifekh" },
	{ "chori" },
	{ "chiqazat" }
} do
	local tens = i * 10
	numbers = {
		cardinal = suff_tens
	}
	for ones = 1, 9 do
		numbers = {
			cardinal = numbers.cardinal .. suff_tens
		}
	end
end

numbers = {
	cardinal = "ken"
}

numbers = {
	cardinal = "dalen"
}

return export