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.

26 lines
2.8 KiB
JavaScript

var nm1 = ["Arachnis", "Arcadia", "Argos", "Athens", "Aurora", "Byblos", "Caladrius", "Damascus", "Daphnus", "Draconis", "Eclipse", "Ecstasy", "Eden", "Elysium", "Impetus", "Jericho", "Karma", "Mania", "Nubela", "Opus", "Requiem", "Titania", "Troy", "Adventure", "Affluence", "Alcohol", "Ambition", "Amusement", "Android", "Ardor", "Art", "Aurora", "Bliss", "Buzz", "Canvas", "Champion", "Change", "Chaos", "Charity", "Chemistry", "Class", "Clock", "Cloud", "Clout", "Corp", "Courage", "Crave", "Creation", "Credit", "Curiosity", "Dark", "Data", "Deal", "Design", "Desire", "Destiny", "Devil", "Diamond", "Dime", "Dirt", "Doubt", "Dream", "Drive", "Droid", "Eclipse", "Ecstasy", "Elation", "Elegance", "Emerald", "Emotion", "Emphasis", "End", "Enterprise", "Eternity", "Euphoria", "Excess", "Faith", "Fashion", "Felicity", "Flavor", "Fluke", "Fortune", "Ghost", "Glee", "Gold", "Grace", "Greed", "Happiness", "Happy", "Harmony", "Hell", "Ice", "Impetus", "Impulse", "Joint", "Joy", "Judgment", "Justice", "Karma", "Kill", "Killjoy", "Liberty", "Light", "Love", "Luck", "Lust", "Mad", "Mania", "Marble", "Mask", "Media", "Memory", "Midnight", "Misery", "Mist", "Motion", "Music", "Nebula", "Needle", "Neon", "Night", "Nova", "Onyx", "Opportunity", "Opulence", "Party", "Passion", "Patriot", "Platinum", "Player", "Pleasure", "Police", "Pride", "Prism", "Prize", "Profit", "Pulse", "Rain", "Rapture", "Redemption", "Reflection", "Requiem", "Revolution", "Rhythm", "Riddle", "Ruby", "Sanity", "Sapphire", "Scent", "Science", "Security", "Serpent", "Silver", "Snake", "Sorrow", "Spark", "Status", "Storm", "Stupidity", "Surprise", "Sympathy", "Tech", "Thirst", "Thrill", "Thunder", "Tomorrow", "Trash", "Umbrella", "Victory", "Virtual", "Vitality", "Waste", "Wish", "Witness", "Wonder", ""];
var nm2 = ["Fall", "Haven", "Hill", "Hold", "Isle", "Park", "Plaza", "Point", "Port", "Square", "Trail", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "City", "Town", "Center"];
var nm3 = [];
function nameGen() {
var br = "";
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
rnd = Math.random() * nm1.length | 0;
if (rnd < 23) {
names = "Neo " + nm1[rnd];
} else {
rnd2 = Math.random() * nm2.length | 0;
names = nm1[rnd] + " " + nm2[rnd2];
}
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);
}