v50 Steam/Premium information for editors
- v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
- Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.
Difference between revisions of "Divine language/script"
Jump to navigation
Jump to search
(Created page with "<syntaxhighlight lang="lua" line> languages.GEN_DIVINE=function() local letters={} letters.vowel={} letters.cons={} letters.vowel.COMMON_NUM=5 letters.vow...") |
m (Removed line numbering) |
||
Line 1: | Line 1: | ||
− | <syntaxhighlight lang="lua" | + | <syntaxhighlight lang="lua"> |
languages.GEN_DIVINE=function() | languages.GEN_DIVINE=function() | ||
Latest revision as of 01:59, 27 February 2025
languages.GEN_DIVINE=function()
local letters={}
letters.vowel={}
letters.cons={}
letters.vowel.COMMON_NUM=5
letters.vowel.NUM=35
letters.cons.COMMON_NUM=12
letters.cons.NUM=22
letters.vowel.lookup={
"a","e","i","o","u",
"ae","ai","ao","au","ea","ei","eo","eu","ia","ie","io","iu","oa","oe","oi","ou","ua","ue","ui","uo","ah","eh","ih","oh","uh","ay","ey","iy","oy","uy"
}
letters.cons.lookup={
"b","p","g","k","c","z","s","d","t","m","n","ng",
"v","f","w","h","j","l","r","q","x","y"
}
for k,v in pairs(letters) do
v.common={}
v.rare={}
for i=1,5 do
if trandom(5)~=0 then v.common[i]=v.lookup[trandom(v.COMMON_NUM)+1] else v.common[i]=v.lookup[trandom(v.NUM)+1] end
end
for i=1,15 do
v.rare[i]=v.lookup[trandom(v.NUM)+1]
end
end
local function letter(t)
if trandom(5)~=0 then
return pick_random(t.common)
else
return pick_random(t.rare)
end
end
local gen_divine={}
for k,v in ipairs(world.language.word) do
local str=""
if trandom(2)~=0 then
str=str..letter(letters.cons)
str=str..letter(letters.vowel)
else
str=str..letter(letters.vowel)
end
local num_letters=trandom(3)
str=str..letter(letters.cons)
if num_letters>0 then str=str..letter(letters.vowel) end
if num_letters>1 then str=str..letter(letters.cons) end
gen_divine[v.token]=str
end
return gen_divine
end