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.

45 lines
1.8 KiB
JavaScript

var nm1 = ["", "", "ch", "h", "k", "m", "n", "r", "th", "v", "y"];
var nm2 = ["aa", "ua", "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 nm3 = ["ch", "cr", "kr", "m", "mm", "n", "ng", "nn", "p", "pr", "s", "sh", "shp", "sp", "ss", "st", "sth", "th", "thr", "v", "vr"];
var nm4 = ["a", "e", "i", "o", "u"];
var nm5 = ["k", "l", "m", "n", "p", "r", "t"];
var nm6 = ["a", "a", "e", "i", "o", "u", "u"];
var nm7 = ["", "", "", "", "", "", "", "", "", "", "", "", "", "h", "l", "m", "n"];
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() * 5 | 0;
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm2.length | 0;
rnd4 = Math.random() * nm3.length | 0;
rnd5 = Math.random() * nm6.length | 0;
rnd3 = Math.random() * nm7.length | 0;
if (nTp < 3) {
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd4] + nm6[rnd5] + nm7[rnd3];
} else {
rnd6 = Math.random() * nm4.length | 0;
rnd7 = Math.random() * nm5.length | 0;
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd4] + nm4[rnd6] + nm5[rnd7] + nm6[rnd5] + nm7[rnd3];
}
testSwear(nMs);
}