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.
56 lines
2.6 KiB
JavaScript
56 lines
2.6 KiB
JavaScript
var nm1 = ["", "", "", "", "", "b", "ch", "g", "k", "kh", "l", "m", "n", "p", "r", "rh", "s", "sl", "t", "v", "y"];
|
|
var nm2 = ["aa", "oo", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "a", "e", "o", "u", "i", "i"];
|
|
var nm3 = ["d", "f", "l", "m", "n", "p", "r", "t", "fr", "ld", "lm", "ln", "lt", "nd", "nt", "nv", "pc", "pd", "pt", "sl", "sn", "st", "tr", "th", "tf", "vl", "vr"];
|
|
var nm4 = ["io", "ia", "eo", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u"];
|
|
var nm5 = ["", "", "", "don", "din", "mit", "grin", "gron", "moth", "mos", "mous", "nas", "nod", "noth", "phant", "plos", "rat", "rin", "ron", "ros", "roth", "rod", "tod", "ton", "toth"];
|
|
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() * 6 | 0;
|
|
rnd = Math.random() * nm1.length | 0;
|
|
rnd2 = Math.random() * nm2.length | 0;
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
if (nTp < 2) {
|
|
while (rnd3 > 7) {
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
}
|
|
while ("" === nm1[rnd] && "" === nm5[rnd5]) {
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm5[rnd5];
|
|
} else {
|
|
rnd4 = Math.random() * nm4.length | 0;
|
|
if (nTp < 4) {
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm5[rnd5];
|
|
} else {
|
|
rnd6 = Math.random() * 7 | 0;
|
|
rnd8 = Math.random() * nm4.length | 0;
|
|
while (rnd4 < 3 && rnd8 < 3) {
|
|
rnd8 = Math.random() * nm4.length | 0;
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm3[rnd6] + nm4[rnd8];
|
|
}
|
|
}
|
|
testSwear(nMs);
|
|
}
|