From f4a066f1c51ff5a5c8e76b9e8993ff44a1cc4e9c Mon Sep 17 00:00:00 2001 From: the lemons Date: Mon, 12 Jun 2023 00:38:03 -0500 Subject: phoneme frequency adjustment --- wordgen.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wordgen.lua b/wordgen.lua index 773f955..b7b7d73 100644 --- a/wordgen.lua +++ b/wordgen.lua @@ -39,12 +39,12 @@ local function _(the) end end -local C = R({'k','t','r','n','s','m','h','d','g','z','y','ts','sh','j','w','kk','tt','ss','b','p','pp'}, 1.15) +local C = R({'k','s','r','n','m','t','h','d','g','z','y','ts','sh','j','w','kk','tt','ss','b','p','pp'}, 1.15) local V = R("auioe", 1.3) -local N = R({"","ń"}, 4.5) +local N = R({"","ń"}, 8) local S = _{R({C,""}, 10),V,N} -local W = _({S,R({S,"",_{S,S},_{S,S,S}},2.5)}) +local W = _({S,R({S,"",_{S,S},_{S,S,S}},3)}) local the = ... and tonumber(...) or 10 -- cgit v1.2.3