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.
31 lines
2.8 KiB
JavaScript
31 lines
2.8 KiB
JavaScript
var names3 = ["An", "Ag", "Agar", "Bin", "Berel", "Cryn", "Caer", "Den", "Dane", "Ere", "Eme", "Fin", "For", "Gran", "Gan", "Hene", "Har", "Irel", "Ise", "Kran", "Kor", "Lene", "Lore", "Mas", "Mine", "Nor", "Nara", "Or", "Ore", "Pan", "Pris", "Ran", "Rone", "Shan", "Sin", "Tor", "Tin", "Ure", "Unar", "Vran", "Vor", "Wan", "Was", "Yre", "Yren", "Zon", "Zar"];
|
|
var names4 = ["bath", "borin", "dwen", "dras", "faroth", "ferys", "garwen", "goth", "horith", "han", "krath", "kelor", "len", "loth", "meloth", "myn", "naris", "noth", "paris", "parwen", "rawyn", "renoth", "saroth", "saris", "taroth", "tan", "vryn", "varys", "wenoth", "wen", "yloth", "yrwen", "zras", "zoth"];
|
|
|
|
function nameGen(type) {
|
|
var tp = type;
|
|
if (tp === 1) {
|
|
var names1 = ["Ari", "Aith", "Bel", "Bire", "Cele", "Cen", "El", "Elle", "En", "Fae", "Fai", "Gis", "Gwen", "Haer", "Hele", "Inhe", "Ime", "Je", "Jes", "Kir", "Kine", "Les", "Lyn", "Mel", "Min", "Nira", "Nythe", "Pes", "Prys", "Rine", "Ryn", "Shi", "Sina", "Tera", "Ter", "Unhel", "Uve", "Ven", "Vyr", "Wae", "Wina", "Ynhe", "Ys", "Zhar", "Zida"];
|
|
var names2 = ["bora", "bysh", "dhora", "denyse", "fani", "feah", "geth", "greah", "her", "hish", "kharise", "kyre", "lenor", "lori", "mhes", "meril", "neris", "nyish", "pireth", "path", "rae", "rish", "reno", "ren", "shan", "selin", "thune", "tys", "vhis", "vena", "wihn", "wen", "yane", "yis", "zhina", "zis"];
|
|
} else {
|
|
var names1 = ["Are", "Ath", "Bal", "Bir", "Cele", "Cen", "Ed", "Edhel", "En", "Fa", "Fai", "Gir", "Glen", "Har", "Here", "Idhe", "Ire", "Ja", "Jed", "Kar", "Kida", "Lat", "Lyr", "Men", "Mir", "Niri", "Nyr", "Pare", "Pryn", "Red", "Ryn", "Si", "Sida", "Tere", "Tor", "Udhel", "Ure", "Var", "Vyr", "Wai", "Wiri", "Ydhe", "Yr", "Zar", "Zida"];
|
|
var names2 = ["bor", "bys", "dhor", "danyis", "faris", "fiath", "groth", "griath", "hur", "his", "karis", "kir", "lebor", "lor", "mhor", "mitil", "naris", "nyis", "prith", "piroth", "re", "riath", "rilor", "ring", "sur", "sebir", "thur", "til", "vhur", "vus", "with", "we", "yaris", "yor", "zhor", "zius"];
|
|
}
|
|
var br = "";
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
rnd0 = Math.floor(Math.random() * names1.length);
|
|
rnd1 = Math.floor(Math.random() * names2.length);
|
|
rnd2 = Math.floor(Math.random() * names3.length);
|
|
rnd3 = Math.floor(Math.random() * names4.length);
|
|
names = names1[rnd0] + names2[rnd1] + " " + names3[rnd2] + names4[rnd3];
|
|
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);
|
|
}
|