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.
55 lines
2.5 KiB
JavaScript
55 lines
2.5 KiB
JavaScript
var nm1 = ["f", "l", "m", "n", "ph", "s", "sh", "w", "y", "z", "", ""];
|
|
var nm2 = ["a", "e", "o", "i", "u", "ó", "é", "ie", "ui", "ia", "ea", "ae", "ua"];
|
|
var nm3 = ["l", "lm", "ln", "ls", "n", "nn", "ph", "r", "s", "sh", "ss", "th"];
|
|
var nm4 = ["r", "n", "s", "th", "l", "m"];
|
|
var nm5 = ["a", "e", "ë", "é", "ó", "", "", "", "", ""];
|
|
var nm6 = ["c", "k", "l", "m", "n", "p", "r", "s", "t", "th", "", ""];
|
|
var nm7 = ["a", "e", "o", "i", "u", "ó", "é", "ai", "eo", "io", "eö", "uo", "ua"];
|
|
var nm8 = ["l", "ll", "lm", "ln", "ls", "m", "md", "n", "nd", "nm", "nw", "r", "s", "ss", "t", "w"];
|
|
var nm9 = ["l", "m", "n", "nd", "r", "s", "t", "th"];
|
|
var nm10 = ["o", "e", "ë", "ó", "", "", "", ""];
|
|
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++) {
|
|
if (tp === 1) {
|
|
rnd = Math.floor(Math.random() * nm1.length);
|
|
rnd2 = Math.floor(Math.random() * nm2.length);
|
|
rnd3 = Math.floor(Math.random() * nm3.length);
|
|
rnd4 = Math.floor(Math.random() * nm2.length);
|
|
if (rnd2 > 6) {
|
|
while (rnd4 > 6) {
|
|
rnd4 = Math.floor(Math.random() * nm2.length);
|
|
}
|
|
}
|
|
rnd5 = Math.floor(Math.random() * nm4.length);
|
|
rnd6 = Math.floor(Math.random() * nm5.length);
|
|
names = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm2[rnd4] + nm4[rnd5] + nm5[rnd6];
|
|
} else {
|
|
rnd = Math.floor(Math.random() * nm6.length);
|
|
rnd2 = Math.floor(Math.random() * nm7.length);
|
|
rnd3 = Math.floor(Math.random() * nm8.length);
|
|
rnd4 = Math.floor(Math.random() * nm7.length);
|
|
if (rnd2 > 6) {
|
|
while (rnd4 > 6) {
|
|
rnd4 = Math.floor(Math.random() * nm7.length);
|
|
}
|
|
}
|
|
rnd5 = Math.floor(Math.random() * nm9.length);
|
|
rnd6 = Math.floor(Math.random() * nm10.length);
|
|
names = nm6[rnd] + nm7[rnd2] + nm8[rnd3] + nm7[rnd4] + nm9[rnd5] + nm10[rnd6];
|
|
}
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(names));
|
|
element.appendChild(br);
|
|
}
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|