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.
47 lines
2.8 KiB
JavaScript
47 lines
2.8 KiB
JavaScript
var nm1 = ["", "", "", "", "", "", "b", "bh", "br", "c", "ch", "ct", "cth", "d", "dr", "dh", "dy", "dz", "f", "fr", "g", "gh", "gn", "h", "hw", "k", "kh", "kn", "kr", "l", "m", "m", "mn", "mh", "m", "n", "ng", "p", "ph", "pr", "q", "qh", "s", "sh", "st", "sr", "t", "th", "v", "vr", "vh", "w", "wr", "x", "y"];
|
|
var nm2 = ["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", "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", "ae", "ae", "ai", "aa", "eo", "ea", "ei", "io", "iu", "ia", "oo", "ou", "uu", "ua", "ue"];
|
|
var nm3 = ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "ch", "g", "l", "m", "n", "p", "q", "r", "s", "z"];
|
|
var nm4 = ["b", "c", "d", "g", "h", "j", "k", "l", "m", "n", "p", "r", "s", "t", "th", "tr", "w"];
|
|
var nm5 = ["", "", "", "", "", "", "", "", "", "", "", "", "c", "cs", "c", "d", "d", "h", "h", "k", "k", "ks", "l", "ls", "l", "n", "n", "ng", "nth", "q", "q", "r", "r", "rs", "s", "s", "t", "t", "th", "v", "x"];
|
|
var br = "";
|
|
|
|
function nameGen() {
|
|
$('#placeholder').css('textTransform', 'capitalize');
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
rnd2 = Math.random() * nm2.length | 0;
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
if (i < 3) {
|
|
while (rnd < 6) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
}
|
|
while (rnd5 < 12) {
|
|
rnd5 = Math.random() * nm5.length | 0;
|
|
}
|
|
names = nm1[rnd] + nm2[rnd2] + nm5[rnd5];
|
|
} else if (i < 7) {
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
rnd4 = Math.random() * nm4.length | 0;
|
|
rnd6 = Math.random() * nm2.length | 0;
|
|
names = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm2[rnd6] + nm5[rnd5];
|
|
} else {
|
|
rnd3 = Math.random() * nm3.length | 0;
|
|
rnd4 = Math.random() * nm4.length | 0;
|
|
rnd6 = Math.random() * nm2.length | 0;
|
|
rnd7 = Math.random() * nm3.length | 0;
|
|
rnd8 = Math.random() * nm4.length | 0;
|
|
rnd9 = Math.random() * nm2.length | 0;
|
|
names = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm2[rnd6] + nm3[rnd7] + nm4[rnd8] + nm2[rnd9] + nm5[rnd5];
|
|
}
|
|
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);
|
|
}
|