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
2.1 KiB
JavaScript

var br = "";
function nameGen() {
var nm1 = ["Acid", "Ajar", "Aloof", "Amuck", "Anguish", "Anxi", "Arid", "Barb", "Barrage", "Bash", "Bawdy", "Beetle", "Bitter", "Bity", "Blaze", "Blink", "Bluster", "Bogus", "Bruise", "Bruiser", "Bumpy", "Ceit", "Chain", "Chaos", "Cheeky", "Chem", "Chemic", "Chunky", "Coarse", "Cobweb", "Coil", "Crabby", "Craven", "Crazy", "Creature", "Crispy", "Crooks", "Crush", "Daffy", "Dange", "Deadpan", "Decay", "Dim", "Dirty", "Drabby", "Dreary", "Droopy", "Dusty", "Envy", "Error", "Escape", "Ex", "Exit", "Fang", "Fangs", "Feisty", "Fickle", "Filthy", "Flaky", "Flavor", "Floppy", "Foamy", "Frothy", "Gaudy", "Ghost", "Giddy", "Glib", "Gravy", "Greasy", "Grief", "Griefer", "Grimy", "Grope", "Grouchy", "Grubby", "Guise", "Harm", "Hide", "Hissy", "Hollow", "Hook", "Hooks", "Host", "Howler", "Ichor", "Icky", "Imp", "Impulse", "Itchy", "Jacket", "Jaunty", "Jealous", "Juicy", "Juvi", "Kaput", "Lumpy", "Marble", "Marbles", "Measly", "Meaty", "Moldy", "Murky", "Naughty", "Needle", "Noisy", "Noxy", "Penance", "Pesky", "Petty", "Phantom", "Pitch", "Plump", "Poison", "Prickly", "Prison", "Psych", "Queasy", "Rake", "Raspy", "Raw", "Requiem", "Rowdy", "Rust", "Sanity", "Sassy", "Scaly", "Scarecrow", "Scissors", "Scrawny", "Screech", "Shade", "Shadow", "Shaggy", "Shaky", "Shallow", "Slice", "Sloppy", "Smash", "Smoggy", "Snake", "Soggy", "Sorrow", "Spicy", "Spider", "Spite", "Sticky", "Stitch", "Stitches", "Stroke", "Sulky", "Sweaty", "Vacancy", "Vacant", "Vagabond", "Venom", "Vile", "Virus", "Volatile", "Wart", "Wicked", "Wiggly", "Woe", "Wrath", "Wry"];
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);
}