Module:number list/data/bbj


This module contains data on various types of numbers in Ghomala'.

Number Cardinal
0 sɔmywə̌
1 mu'
2 pʉə́ə
3
4 pfʉə̀
5 tɔ̂
6 tɔkɔ́
7 sɔmbʉə́ə
8 hɔ̌m
9 vʉ'ʉ́
10 ghǎm
11 shwamu'
12 shwɔp tá
16 shwɔp ntɔkɔ́
18 shwɔp hɔ̌m
20 m'bʉə́
30 m'ntá
50 m'ntɔ̂
70 m'sɔm
100 khə
276 shwɔp nthɔk mgham sɔmbʉə khə pʉə
1,000 sha'
20,000 sha' mgham bʉə
23,000 sha' shwɔp tɔ mgham bʉə
1,000,000 (106) sha' shǎ'
1,000,000,000 (109) ?

local export = {numbers = {}}

export.additional_number_types = {
	{key = "numeral_noun"}
}

local numbers = export.numbers

numbers[0] = {
	cardinal = "sɔmywə̌",
	longform = "?"
}

numbers[1] = {
	cardinal = "mu'",
	longform = "yaə̂mu'"
}

numbers[2] = {
	cardinal = "pʉə́ə",
	longform = "yaə́"
}

numbers[3] = {
	cardinal = "tá",
	longform = "yaə́tá"
}

numbers[4] = {
	cardinal = "pfʉə̀",
	longform = "yápfʉə̀"
}

numbers[5] = {
	cardinal = "tɔ̂",
	longform = "yaə́tɔ̂"
}

numbers[6] = {
	cardinal = "tɔkɔ́",
	longform = "ntɔkɔ́"
}

numbers[7] = {
	cardinal = "sɔmbʉə́ə",
	longform = "?"
}

numbers[8] = {
	cardinal = "hɔ̌m",
	longform = "?"
}

numbers[9] = {
	cardinal = "vʉ'ʉ́",
	longform = "?"
}

numbers[10] = {
	cardinal = "ghǎm",
	longform = "?"
}

numbers[11] = {
	cardinal = "shwamu'",
	longform = "shwamu' mgham"
}

numbers[12] = {
	cardinal = "shwɔp pʉə",
	longform = "shwɔp pʉə mgham"
}

numbers[12] = {
	cardinal = "shwɔp tá",
	longform = "shwɔp tá mgham"
}

numbers[16] = {
	cardinal = "shwɔp ntɔkɔ́",
	longform = "shwɔp ntɔkɔ́ mghǎm"
}

numbers[18] = {
	cardinal = "shwɔp hɔ̌m",
	longform = "shwɔp hɔ̌m mghǎm",
}

numbers[20] = {
	cardinal = "m'bʉə́",
	longform = "mghǎm m'bʉə́",
}

numbers[30] = {
	cardinal = "m'ntá",
	longform = "mghǎm m'bʉə́",
}

numbers[50] = {
	cardinal = "m'ntɔ̂",
	longform = "mghǎm tɔ̂",
}

numbers[70] = {
	cardinal = "m'sɔm",
	longform = "mghǎm m'sɔm",
}


numbers[100] = {
	cardinal = "khə",
	longform = "ŋkhə"
}

numbers[276] = {
	cardinal = "shwɔp nthɔk mgham sɔmbʉə khə pʉə"
}


numbers[1000] = {
	cardinal = "sha'"
}

numbers[20000] = {
	cardinal = "sha' mgham bʉə"
}

numbers[23000] = {
	cardinal = "sha' shwɔp tɔ mgham bʉə"
}

numbers[1000000] = {
	cardinal = "sha' shǎ'"
}

local function power_of(n)
	return "1" .. string.rep("0", n)
end

export.numbers[power_of(9)] = {
	cardinal = "?"
}

return export