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.

50 lines
2.0 KiB
JavaScript

var nm1 = ["", "", "ch", "d", "fl", "g", "gr", "k", "kr", "l", "n", "p", "sk", "skl", "sl", "spl", "sq", "st", "t", "y", "z"];
var nm2 = ["ee", "oo", "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 nm3 = ["b", "bd", "bn", "d", "dg", "dn", "dr", "gd", "gl", "k", "kd", "kl", "l", "p", "pl", "r", "rn", "rdn", "rd", "sl", "st", "tl", "v", "z"];
var nm4 = ["", "", "", "", "", "", "c", "ch", "cks", "d", "g", "l", "lk", "m", "n", "nk", "nt", "r", "rb", "t", "tch"];
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();
}
nMs = "Invader " + nMs;
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() * 3 | 0;
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm2.length | 0;
rnd3 = Math.random() * nm4.length | 0;
if (nTp < 2) {
while (nm1[rnd] === nm4[rnd3]) {
rnd3 = Math.random() * nm4.length | 0;
}
nMs = nm1[rnd] + nm2[rnd2] + nm4[rnd3];
} else {
rnd4 = Math.random() * nm3.length | 0;
rnd5 = Math.random() * nm2.length | 0;
while (nm3[rnd4] === nm1[rnd] || nm3[rnd4] === nm4[rnd3]) {
rnd4 = Math.random() * nm3.length | 0;
}
while (nm2[rnd2] < 2 && nm2[rnd5] < 2) {
rnd5 = Math.random() * nm2.length | 0;
}
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd4] + nm2[rnd5] + nm4[rnd3];
}
testSwear(nMs);
}