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.
70 lines
2.9 KiB
JavaScript
70 lines
2.9 KiB
JavaScript
var nm1 = ["", "", "", "br", "c", "ch", "cr", "cl", "d", "dr", "dh", "f", "g", "gr", "gh", "gl", "gn", "h", "j", "k", "kr", "kn", "m", "n", "pr", "p", "q", "r", "rh", "s", "sh", "st", "str", "sn", "sm", "t", "tr", "v", "vr", "wr", "x", "xh", "z", "zr", "zh", "c", "d", "f", "g", "j", "j", "k", "m", "n", "p", "q", "r", "s", "t", "v", "x", "z"];
|
|
var nm2 = ["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", "y", "y", "ai", "ae", "au", "aa", "ea", "eo", "ee", "ia", "ie", "io"];
|
|
var nm3 = ["b", "c", "d", "f", "g", "h", "k", "l", "m", "n", "p", "q", "r", "s", "t", "v", "x", "z"];
|
|
var nm4 = ["", "", "", "", "", "", "", "", "", "b", "c", "d", "f", "g", "h", "k", "l", "m", "n", "p", "r", "s", "t", "w", "x", "z"];
|
|
var nm5 = ["c", "ck", "g", "h", "k", "l", "m", "n", "q", "r", "s", "sh", "t", "th", "x", "z"];
|
|
var nm6 = ["e", "i", "u", "a", "o", "y", "ia", "ea", "ae"];
|
|
var br = "";
|
|
|
|
function nameGen(type) {
|
|
$('#placeholder').css('textTransform', 'capitalize');
|
|
var tp = type;
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
rnd2 = Math.random() * nm2.length | 0;
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
if (tp === 1) {
|
|
nameFem();
|
|
while (nMs === "") {
|
|
nameFem();
|
|
}
|
|
} else {
|
|
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() {
|
|
if (i < 5) {
|
|
while (rnd < 3) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3];
|
|
} else {
|
|
rnd4 = Math.random() * nm4.length | 0;
|
|
rnd5 = Math.random() * nm2.length | 0;
|
|
rnd6 = Math.random() * nm5.length | 0;
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm2[rnd5] + nm5[rnd6];
|
|
}
|
|
testSwear(nMs);
|
|
}
|
|
|
|
function nameFem() {
|
|
if (i < 5) {
|
|
rnd4 = Math.random() * nm6.length | 0;
|
|
while (rnd < 3) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm6[rnd4];
|
|
} else {
|
|
rnd4 = Math.random() * nm4.length | 0;
|
|
rnd5 = Math.random() * nm2.length | 0;
|
|
rnd6 = Math.random() * nm5.length | 0;
|
|
rnd7 = Math.random() * nm6.length | 0;
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm2[rnd5] + nm5[rnd6] + nm6[rnd7];
|
|
}
|
|
testSwear(nMs);
|
|
}
|