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.

20 lines
4.5 KiB
JavaScript

var br = "";
function nameGen() {
var nm1 = ["Abyss", "Acacia", "Acorn", "Air", "Alcyone", "Allium", "Almond", "Alyssum", "Amaryllis", "Amber", "Amethyst", "Anemone", "Aphid", "Apple", "Apricot", "Aqua", "Aria", "Ash", "Aspen", "Aurora", "Autumn", "Axis", "Azalea", "Badger", "Barley", "Basil", "Bear", "Beauty", "Beech", "Begonia", "Belladonna", "Bellflower", "Berry", "Beryl", "Birch", "Bird", "Birdy", "Bitter", "Blaze", "Blossom", "Blue", "Bluebell", "Bracken", "Bramble", "Breeze", "Briar", "Bright", "Brine", "Broom", "Bubble", "Bud", "Bumble", "Buttercup", "Candle", "Canyon", "Caraway", "Carrot", "Cat", "Cayenne", "Cedar", "Celeste", "Celestial", "Charity", "Chasm", "Cherry", "Chestnut", "Chickadee", "Chilly", "Chipmunk", "Cinder", "Cinnamon", "Cintrine", "Citron", "Citrus", "Cloud", "Clove", "Clover", "Cocoa", "Coconut", "Comet", "Cookie", "Copper", "Coral", "Coriander", "Cornflower", "Cosmo", "Cotton", "Coyote", "Cozy", "Crabapple", "Cranberry", "Cricket", "Crystal", "Cupcake", "Cute", "Cypress", "Daffodil", "Dahlia", "Daisy", "Dalila", "Dandelion", "Dapple", "Dark", "Dawn", "Day", "Daybreak", "Daylily", "Dazzle", "Dew", "Dewdrop", "Diamond", "Dill", "Dimple", "Dragonfly", "Drake", "Drift", "Dune", "Dusk", "Earth", "Echo", "Elm", "Ember", "Emerald", "Evening", "Faith", "Falcon", "Fancy", "Fantasia", "Fauna", "Fern", "Fiery", "Fig", "Finch", "Fire", "Flame", "Flare", "Flax", "Flint", "Flirt", "Flora", "Flutter", "Fog", "Fox", "Foxglove", "Frost", "Frostbite", "Galaxy", "Garden", "Garlic", "Garnet", "Gem", "Giggle", "Ginger", "Ginko", "Glitter", "Gold", "Grace", "Grass", "Gray", "Green", "Grove", "Gullie", "Gypsum", "Happy", "Harbor", "Harmony", "Hazel", "Heather", "Heaven", "Herb", "Hibiscus", "Hickoy", "Holly", "Hollyhock", "Honey", "Hope", "Horizon", "Hurricane", "Hyacinth", "Hydrangea", "Ice", "Indigo", "Infinity", "Iris", "Island", "Isle", "Ivory", "Ivy", "Jade", "Jasmine", "Jelly", "Jester", "Jewel", "Jingle", "Joy", "June", "Juniper", "Kiwi", "Labyrinth", "Lake", "Lapis", "Lark", "Laurel", "Lavender", "Lazuli", "Leaf", "Lemon", "Lemony", "Lichen", "Light", "Lightning", "Lilac", "Lilly", "Lime", "Little", "Lotus", "Love", "Lucky", "Lucy", "Magenta", "Magic", "Magnolia", "Magpie", "Mahogany", "Mango", "Maple", "Marigold", "Meadow", "Melody", "Merry", "Midnight", "Milkweed", "Mist", "Moon", "Moonbeam", "Morel", "Morning", "Moss", "Mountain", "Mud", "Mulberry", "Nature", "Nebula", "Nectarine", "Never", "Newt", "Night", "Nightfall", "Nightshade", "Nimbus", "North", "Nova", "Nutmeg", "Oak", "Ocean", "Oleander", "Olive", "Onyx", "Opal", "Orange", "Orchid", "Oregano", "Palm", "Parsley", "Passiflora", "Peach", "Peanut", "Pear", "Pearl", "Pecan", "Pepper", "Peridot", "Persimmon", "Petal", "Petunia", "Pine", "Pineapple", "Pinecone", "Pistachio", "Plum", "Plume", "Poinsetia", "Poison", "Pollen", "Poplar", "Poppy", "Prairie", "Pretty", "Primrose", "Prize", "Prudence", "Pumpkin", "Purple", "Pyre", "Quick", "Quicksilver", "Rain", "Rainbow", "Raven", "Red", "Reef", "Ridge", "River", "Robin", "Rock", "Rose", "Rosemary", "Ruby", "Saffron", "Sage", "Sapphire", "Scarlet", "Scorpion", "Sea", "Seaweed", "Serendipity", "Shade", "Shadow", "Shimmer", "Shiny", "Silhouette", "Silk", "Silver", "Sky", "Skylark", "Smoke", "Sneeze", "Snow", "Snowdrop", "Snowflake", "Sorrell", "Sour", "Spark", "Sparkle", "Spice", "Spider", "Spore", "Spring", "Sprinkle", "Spruce", "Star", "Stardust", "Starfish", "Stone", "Storm", "Strawberry", "Summer", "Sun", "Sunflower", "Sunrise", "Sunset", "Sunshine", "Swan", "Sweet", "Swift", "Tadpole", "Tangle", "Tarragon", "Tempest", "Thicket", "Thistle", "Thunder", "Tiger", "Timber", "Tiny", "Toad", "Topaz", "Topiary", "Tourmaline", "Tree", "Tulip", "Tumble", "Turnip", "Turquoise", "Turtle", "Twig", "Twilight", "Twinkle", "Twist", "Urchin", "Vanilla", "Viola", "Violet", "Walnut", "Water", "Waterfall", "Wave", "West", "Whirl", "White", "Wild", "Willow", "Wind", "Winter", "Wolf", "Wonder", "Wood", "Wren", "Wrinkle", "Yucca", "Zephyr"];
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
rnd = Math.random() * nm1.length | 0;
nMs = nm1[rnd];
nm1.splice(rnd, 1);
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);
}