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.
95 lines
3.9 KiB
JavaScript
95 lines
3.9 KiB
JavaScript
var nm1 = ["", "", "", "", "", "", "d", "h", "j", "k", "l", "m", "n", "r", "sh", "t", "v", "z"];
|
|
var nm2 = ["ai", "ei", "ee", "aa", "ia", "a", "e", "i", "o", "u", "a", "o", "u", "a", "e", "i", "o", "u", "a", "o", "u"];
|
|
var nm3 = ["ch", "d", "dj", "j", "g", "k", "lj", "lch", "lk", "ln", "lt", "m", "mb", "mj", "mr", "mz", "mn", "n", "nb", "nch", "nd", "nk", "nj", "nz", "nt", "r", "t", "y", "z"];
|
|
var nm4 = ["a", "i", "o", "a", "i", "o", "e"];
|
|
var nm5 = ["j", "r", "s", "sh", "t", "z"];
|
|
var nm6 = ["ou", "ei", "ai", "a", "e", "i", "o", "u", "a", "e", "i", "o", "u"];
|
|
var nm7 = ["h", "n", "", "", "", ""];
|
|
var nm8 = ["", "", "", "", "", "ch", "g", "h", "j", "k", "l", "m", "n", "r", "s", "t", "v", "y"];
|
|
var nm9 = ["eu", "ee", "ai", "aa", "ei", "ia", "a", "e", "i", "o", "a", "e", "i", "o", "e", "i", "e", "i"];
|
|
var nm10 = ["ch", "d", "dh", "h", "hm", "hn", "hr", "k", "kh", "kk", "l", "lm", "ln", "lr", "ld", "ll", "m", "my", "n", "ny", "nn", "nh", "nt", "ns", "r", "rh", "rr", "s", "sh", "v", "y", "z"];
|
|
var nm11 = ["e", "i", "o", "e", "i", "o", "a", "e"];
|
|
var nm12 = ["n", "r", "s", "sh", "t", "y"];
|
|
var nm13 = ["ei", "ee", "ai", "ia", "ea", "a", "i", "a", "i", "a", "i", "a", "i", "a", "i", "a", "i", "e", "e", "o", "o"];
|
|
var nm14 = ["", "", "", "", "", "h"];
|
|
var br = "";
|
|
|
|
function nameGen(type) {
|
|
var tp = type;
|
|
$('#placeholder').css('textTransform', 'capitalize');
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
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() {
|
|
nTp = Math.random() * 5 | 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;
|
|
rnd5 = Math.random() * nm7.length | 0;
|
|
while (nm3[rnd3] === nm1[rnd] || nm3[rnd3] === nm7[rnd5]) {
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
}
|
|
if (nTp < 3) {
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm6[rnd4] + nm7[rnd5];
|
|
} else {
|
|
while (rnd2 < 5 && rnd4 < 3) {
|
|
rnd2 = Math.random() * nm2.length | 0;
|
|
}
|
|
rnd6 = Math.random() * nm4.length | 0;
|
|
rnd7 = Math.random() * nm5.length | 0;
|
|
while (nm5[rnd7] === nm3[rnd3] || nm5[rnd7] === nm7[rnd5]) {
|
|
rnd7 = Math.random() * nm5.length | 0;
|
|
}
|
|
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd6] + nm5[rnd7] + nm6[rnd4] + nm7[rnd5];
|
|
}
|
|
testSwear(nMs);
|
|
}
|
|
|
|
function nameFem() {
|
|
nTp = Math.random() * 5 | 0
|
|
rnd = Math.random() * nm8.length | 0;
|
|
rnd2 = Math.random() * nm9.length | 0;
|
|
rnd3 = Math.random() * nm10.length | 0;
|
|
rnd4 = Math.random() * nm13.length | 0;
|
|
rnd5 = Math.random() * nm14.length | 0;
|
|
while (nm10[rnd3] === nm8[rnd] || nm10[rnd3] === nm14[rnd5]) {
|
|
rnd3 = Math.random() * nm10.length | 0;
|
|
}
|
|
if (nTp < 3) {
|
|
nMs = nm8[rnd] + nm9[rnd2] + nm10[rnd3] + nm13[rnd4] + nm14[rnd5];
|
|
} else {
|
|
while (rnd2 < 6 && rnd4 < 5) {
|
|
rnd2 = Math.random() * nm9.length | 0;
|
|
}
|
|
rnd6 = Math.random() * nm11.length | 0;
|
|
rnd7 = Math.random() * nm12.length | 0;
|
|
while (nm12[rnd7] === nm10[rnd3] || nm12[rnd7] === nm14[rnd5]) {
|
|
rnd7 = Math.random() * nm12.length | 0;
|
|
}
|
|
nMs = nm8[rnd] + nm9[rnd2] + nm10[rnd3] + nm11[rnd6] + nm12[rnd7] + nm13[rnd4] + nm14[rnd5];
|
|
}
|
|
testSwear(nMs);
|
|
}
|