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.

57 lines
3.2 KiB
JavaScript

var nm1 = ["", "", "", "", "", "", "f", "fr", "g", "gr", "h", "l", "m", "n", "ph", "r", "s", "sh", "v", "vr", "z"];
var nm2 = ["a", "e", "i", "a", "e", "i", "u", "y"];
var nm3 = ["b", "d", "g", "gn", "gl", "gr", "l", "ld", "lr", "lm", "ln", "m", "mg", "md", "n", "nd", "ng", "nk", "nt", "r", "rl", "rm", "rn", "rv", "s", "sh", "th", "v", "z"];
var nm4 = ["a", "e", "i", "o", "a", "e", "i", "o", "a", "e", "i", "o", "a", "e", "i", "o", "a", "e", "i", "o", "a", "e", "i", "o", "a", "e", "i", "o", "ia", "eo", "ie", "io"];
var nm5 = ["d", "dr", "h", "l", "ld", "lm", "ll", "n", "nn", "nd", "ndr", "r", "rr", "t", "th", "v", "w"];
var nm6 = ["a", "e", "i"];
var nm7 = ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "n", "l", "h", "s"];
var nm8 = ["anger", "bird", "bite", "bitter", "blood", "burst", "chain", "chaos", "cold", "course", "craft", "crazy", "crook", "crow", "crown", "crush", "dark", "death", "dirt", "dread", "edge", "end", "fear", "feast", "flight", "flock", "flow", "fluke", "fork", "foul", "fury", "ghost", "glass", "grand", "grief", "grim", "gust", "half", "hate", "hell", "horror", "ice", "iron", "light", "moon", "nest", "owl", "pain", "poison", "pride", "queen", "quill", "rage", "raw", "rip", "scorn", "shade", "shadow", "shift", "slice", "smoke", "snow", "solar", "sorrow", "spark", "spell", "spirit", "spite", "stitch", "storm", "strike", "sun", "talon", "tear", "terror", "thunder", "trail", "twist", "venom", "war", "wild", "worm"];
var nm9 = ["barb", "claw", "crest", "crook", "cry", "feather", "fringe", "hook", "plume", "plumes", "quill", "scream", "screech", "shriek", "shrill", "song", "squawk", "talon", "wail", "wing"];
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++) {
nameMas();
while (nMs === "") {
nameMas();
}
rnd = Math.random() * nm8.length | 0;
rnd2 = Math.random() * nm9.length | 0;
while (nm8[rnd] === nm9[rnd2]) {
rnd2 = Math.random() * nm9.length | 0;
}
nMs = nMs + " " + nm8[rnd] + nm9[rnd2]
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() * nm3.length | 0;
rnd4 = Math.random() * nm4.length | 0;
rnd5 = Math.random() * nm7.length | 0;
while (nm3[rnd3] === nm1[rnd] || nm3[rnd3] === nm7[rnd5]) {
rnd3 = Math.random() * nm3.length | 0;
}
if (nTp === 0) {
rnd6 = Math.random() * nm5.length | 0;
rnd7 = Math.random() * nm6.length | 0;
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm5[rnd6] + nm6[rnd7] + nm7[rnd5];
} else {
nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm4[rnd4] + nm7[rnd5];
}
testSwear(nMs);
}