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.

75 lines
2.5 KiB
JavaScript

var nm1 = ["a", "i", "o", "a", "o"];
var nm2 = ["d", "l", "m", "n", "r", "s", "t", "y", "z"];
var nm3 = ["a", "e", "o", "u", "o"];
var nm4 = ["g", "k", "m", "n", "r", "s", "t", "v", "z"];
var nm5 = ["a", "e", "o", "ei", "ae", "oi", "ai"];
var nm6 = ["d", "f", "h", "l", "m", "n", "r", "s", "v", "y"];
var nm7 = ["a", "e", "i", "e"];
var nm8 = ["c", "g", "k", "l", "m", "n", "r", "s", "v", "y", "z"];
var nm9 = ["a", "a", "e", "o", "i", "u"];
var nm10 = ["l", "n", "s", "r", "v", "y", "z"];
var nm11 = ["a", "e", "i", "a"];
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() {
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm2.length | 0;
rnd3 = Math.random() * nm3.length | 0;
rnd4 = Math.random() * nm4.length | 0;
rnd5 = Math.random() * nm5.length | 0;
while (nm2[rnd2] === nm4[rnd4]) {
rnd2 = Math.random() * nm2.length | 0;
}
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm5[rnd5];
testSwear(nMs);
}
function nameFem() {
nTp = Math.random() * 3 | 0;
rnd = Math.random() * nm6.length | 0;
rnd2 = Math.random() * nm7.length | 0;
rnd3 = Math.random() * nm8.length | 0;
rnd4 = Math.random() * nm9.length | 0;
if (nTp < 2) {
while (nm6[rnd] === nm8[rnd3]) {
rnd3 = Math.random() * nm8.length | 0;
}
nMs = nm6[rnd] + nm7[rnd2] + nm8[rnd3] + nm9[rnd4];
} else {
rnd5 = Math.random() * nm10.length | 0;
rnd6 = Math.random() * nm11.length | 0;
while (nm10[rnd5] === nm8[rnd2]) {
rnd5 = Math.random() * nm10.length | 0;
}
nMs = nm6[rnd] + nm7[rnd2] + nm8[rnd3] + nm9[rnd4] + nm10[rnd5] + nm11[rnd6];
}
testSwear(nMs);
}