You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
2.4 KiB
JavaScript
50 lines
2.4 KiB
JavaScript
var nm1 = ["", "", "", "c", "c", "ch", "cr", "cw", "h", "h", "k", "k", "kh", "kr", "kw", "l", "l", "r", "r", "rh", "t", "t", "th", "tw"];
|
|
var nm2 = ["aa", "ii", "oa", "ee", "ie", "ei", "ou", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u", "a", "i", "u"];
|
|
var nm3 = ["c-", "k-", "r-", "t-", "c", "k", "l", "r", "t", "cr", "cl", "hk", "ht", "kh", "kr", "rk", "rr", "tr", "tt"];
|
|
var nm4 = ["ii", "ee", "oa", "ie", "a", "e", "i", "a", "e", "i", "a", "e", "i", "a", "e", "i", "a", "e", "i", "a", "e", "i", "o", "u"];
|
|
var nm5 = ["c", "k", "l", "r", "t", "cr", "ct", "cw", "kr", "kw", "rr", "tr", "tw"];
|
|
var nm6 = ["ii", "ee", "ei", "ie", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u", "a", "i", "o", "u"];
|
|
var nm7 = ["", "", "", "", "", "", "h", "k", "l", "r", "t"];
|
|
var br = "";
|
|
|
|
function nameGen() {
|
|
$('#placeholder').css('textTransform', 'capitalize');
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
nameMas();
|
|
while (nMs === "") {
|
|
nameMas();
|
|
}
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(nMs));
|
|
element.appendChild(br);
|
|
}
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|
|
|
|
function nameMas() {
|
|
nTp = Math.random() * 7 | 0;
|
|
rnd = Math.random() * nm1.length | 0;
|
|
rnd2 = Math.random() * nm2.length | 0;
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
rnd4 = Math.random() * nm6.length | 0;
|
|
rnd7 = Math.random() * nm7.length | 0;
|
|
if (nTp < 5) {
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm6[rnd4] + nm7[rnd7];
|
|
} else {
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
rnd6 = Math.random() * nm4.length | 0;
|
|
if (nm3[rnd3] > 8) {
|
|
while (nm5[rnd5] > 4 || nm3[rnd3] === nm5[rnd5]) {
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
}
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd6] + nm5[rnd5] + nm6[rnd4] + nm7[rnd7];
|
|
}
|
|
testSwear(nMs);
|
|
}
|