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.

45 lines
2.4 KiB
JavaScript

var nm1 = ["Ab", "Abel", "Abell", "Acal", "Acanth", "Acon", "Adin", "Agast", "Al", "Alc", "All", "Aln", "Ambr", "Anem", "Ang", "Angel", "Aral", "Aren", "Aron", "Asar", "Ast", "Begon", "Bell", "Bellad", "Bet", "Bumell", "Calad", "Calend", "Cann", "Cedr", "Clem", "Cleom", "Clov", "Cosm", "Dahl", "Daphn", "Dianth", "Dindl", "Dion", "Eleagn", "Elym", "Eranth", "Erem", "Fern", "Gal", "Gall", "Gard", "Ger", "Geran", "Glor", "Gordon", "Helen", "Hibisc", "Holl", "Hydr", "Il", "Ipom", "Iv", "Junip", "Laur", "Lav", "Lavend", "Lil", "Lill", "Lot", "Lott", "Lyon", "Mal", "Mel", "Mell", "Menth", "Mill", "Min", "Molin", "Moss", "Ner", "Nyss", "Papav", "Pell", "Pepp", "Pers", "Prim", "Primul", "Pyrr", "Rhex", "Ros", "Rosem", "Russ", "Saffr", "Scill", "Soph", "Sorr", "Stell", "Tass", "Thal", "Thym", "Tul", "Valer", "Veron", "Viol", "Zinn"];
var nm2 = ["aac", "ael", "am", "an", "ance", "ary", "as", "avan", "en", "ence", "er", "ert", "eson", "ey", "iah", "iam", "ian", "ick", "ien", "in", "iot", "isson", "ius", "ob", "on", "ony", "or", "ore", "ovan", "ua", "uel", "ur"];
var nm3 = ["a", "ah", "ai", "ail", "andra", "antha", "e", "ea", "ecca", "ee", "eine", "elle", "enne", "ett", "ette", "i", "ia", "ianne", "ie", "ielle", "ienne", "illa", "in", "inn", "inth", "intha", "iss", "issa", "or", "ore", "y", "yn"];
function nameGen(type) {
var tp = type;
var br = "";
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
if (tp === 1) {
nameFem();
while (nMs === "") {
nameFem();
}
} else {
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() {
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm2.length | 0;
nMs = nm1[rnd] + nm2[rnd2];
testSwear(nMs);
}
function nameFem() {
rnd = Math.random() * nm1.length | 0;
rnd2 = Math.random() * nm3.length | 0;
nMs = nm1[rnd] + nm3[rnd2];
testSwear(nMs);
}