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.

48 lines
1.9 KiB
JavaScript

var nm1 = ["b", "bl", "d", "dr", "g", "gl", "gr", "m", "n", "ph", "r", "sp", "spl", "t", "tr", "z", "zp"];
var nm2 = ["au", "ou", "aa", "oo", "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 = ["bb", "bl", "bbl", "fg", "fl", "g", "gl", "ggl", "lb", "ld", "lt", "mp", "mpl", "nd", "ndl", "np", "npl", "rb", "rbl", "rl", "rt"];
var nm4 = ["e", "i", "o", "u"];
var nm5 = ["d", "f", "ff", "k", "nk", "p", "ps", "s", "th", "x"];
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++) {
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() * 7 | 0;
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm2.length | 0;
rnd5 = Math.random() * nm5.length | 0;
if (nTp < 2) {
while (nm5[rnd5] === "" && nm1[rnd] === "") {
rnd5 = Math.random() * nm5.length | 0;
}
nMs = nm1[rnd] + nm2[rnd2] + nm5[rnd5];
} else {
rnd3 = Math.random() * nm3.length | 0;
rnd4 = Math.random() * nm4.length | 0;
while (nm3[rnd3] === nm5[rnd5] || nm3[rnd3] === nm1[rnd]) {
rnd3 = Math.random() * nm3.length | 0;
}
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm5[rnd5];
}
testSwear(nMs);
}