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.
21 lines
3.1 KiB
JavaScript
21 lines
3.1 KiB
JavaScript
var nm1 = ["Academy", "Aeon", "Alliance", "Ambassador", "Ambition", "Ancestral", "Angel", "Animus", "Apex", "Apollo", "Apple Blossom", "Arcane", "Arts", "Aura", "Aurora", "Bamboo", "Beacon", "Bellevue", "Bluebell", "Borealis", "Boulevard", "Capital", "Carnival", "Casino", "Castle", "Celeste", "Celestial", "Century", "Cerberus", "Cherry Blossom", "Chimera", "Citadel", "Classic", "Climax", "Cosmos", "Courtyard", "Crescent", "Crown", "Crystal", "Curator", "Daydream", "Delight", "Desire", "Diamond", "Dominion", "Downtown", "Dreamland", "Eclipse", "Ecstasy", "Eden", "Ellipse", "Emerald", "Eminence", "Empire", "Enigma", "Epoch", "Eternity", "Euphony", "Exalted", "Fantasia", "Fantasy", "Festival", "Figment", "Firefly", "Flux", "Fortune", "Frontier", "Galaxy", "Gilded", "Globe", "Golden Gate", "Grand", "Grand Avenue", "Grand Centre", "Grand Chateau", "Grand Fountain", "Grand Guild", "Grand Palace", "Grand Park", "Grand River", "Grand Shrine", "Grandeur", "Grandview", "Guardian", "Harmony", "Heirloom", "Heritage", "Hippogriff", "Illusion", "Image", "Imagination", "Imagine", "Imperial", "Infinity", "Jupiter", "King's", "Landmark", "Legacy", "Legend", "Lilypad", "Limelight", "Lionheart", "Little", "Lumina", "Luminous", "Luminus", "Lunar", "Magic Lantern", "Magister", "Majesty", "Major", "Mammoth", "Melody", "Mercury", "Meridian", "Millennium", "Mirage", "Monolith", "Monument", "Moonlight", "Mystery", "Nebula", "Nightingale", "Obelisk", "Obsidian", "Onyx", "Oracle", "Orbit", "Orion", "Ornate", "Paradise", "Paragon", "Paramount", "Paramour", "Patriot", "Pavilion", "Peacock", "Phenomenon", "Phoenix", "Pilgrim", "Pinnacle", "Pioneer", "Platinum", "Pluto", "Prestige", "Prime", "Prism", "Prodigy", "Pyramid", "Radiance", "Rainbow", "Regal", "Resonance", "Rhinestone", "Rose Petal", "Rosebud", "Royal", "Royal Court", "Royal Hall", "Sapphire", "Serenity", "Silverlight", "Snowflake", "Solar", "Solaris", "Solstice", "Songbird", "Spectacle", "Spirit", "Spotlight", "Spring Garden", "Sprite", "Stargaze", "Starlight", "Stellar", "Summer Garden", "Summit", "Sunset", "Supremacy", "Swanlake", "Talisman", "Independence", "Temple", "Tiara", "Titan", "Tranquility", "Transcendence", "Treasure", "Trinity", "Twilight", "Unison", "Universe", "Uptown", "Utopia", "Valentine", "Vanilla Flower", "Velvet", "Vertex", "Victory", "Vintage", "Virtue", "Vision", "Vortex", "Warden", "Watchtower", "White Flare", "White Orchid", "Zion"];
|
|
var nm2 = ["Theater", "Opera House", "Cinema", "Assembly Hall", "Amphitheater", "Concert Hall", "Theatre"];
|
|
var br = "";
|
|
|
|
function nameGen() {
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.floor(Math.random() * nm1.length);
|
|
rnd2 = Math.floor(Math.random() * nm2.length);
|
|
names = "The " + 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);
|
|
}
|