slaveNames.js (4513B)
1 var nm1 = ["Abnormality", "Ache", "Anguish", "Anomaly", "Ant", "Barbarian", "Bastard", "Peon", "Beast", "Beetle", "Birdbrain", "Blemish", "Blight", "Blockhead", "Boar", "Bonehead", "Boor", "Bottomfeeder", "Boy", "Brute", "Buffoon", "Bug", "Bum", "Corruption", "Crawler", "Creep", "Creeper", "Cretin", "Cricket", "Crud", "Crude", "Curse", "Defect", "Defiled", "Deformation", "Degenerate", "Demon", "Deviant", "Dirt", "Disease", "Disgrace", "Dog", "Dread", "Dreck", "Dunce", "Dust", "Dweller", "Fiend", "Filth", "Flaw", "Flea", "Fly", "Fool", "Freak", "Frog", "Garbage", "Girl", "Gloom", "Gnat", "Gnome", "Goblin", "Greasy", "Gremlin", "Grime", "Grotesque", "Grub", "Gunk", "Halfwit", "Hopeless", "Horror", "Hybrid", "Ill-bred", "Imp", "Impure", "Ingrate", "Insect", "Irregularity", "Junk", "Kobold", "Larva", "Leech", "Lewd", "Louse", "Lowbred", "Lowlife", "Maggot", "Malformed", "Miscreant", "Misery", "Mistake", "Mite", "Mole", "Mongrel", "Monster", "Moth", "Mouse", "Muck", "Mud", "Mug", "Mule", "Mutt", "Nit", "Oaf", "Obscenity", "Ogre", "Parasite", "Pervert", "Pest", "Pig", "Plague", "Pollution", "Prawn", "Primitive", "Rabbit", "Rags", "Rascal", "Rat", "Roach", "Rodent", "Rubble", "Runt", "Savage", "Scamp", "Scrub", "Scum", "Shrimp", "Simple-mind", "Simpleton", "Skunk", "Sleaze", "Slime", "Slop", "Slug", "Smear", "Smut", "Snail", "Snake", "Snot", "Sorrow", "Spider", "Squirmer", "Stain", "Stitch", "Syndrome", "Taint", "Termite", "Tick", "Toad", "Trash", "Troll", "Twerp", "Unchaste", "Uncivilized", "Unclean", "Uncouth", "Unformed", "Untaught", "Vermin", "Waste", "Weakness", "Weasel", "Weevil", "Whelp", "Woe", "Worm", "Wretch", "Wriggler"]; 2 var nm2 = ["Abomniable", "Ash", "Awful", "Bad", "Baseborn", "Black", "Bottom", "Broken", "Brown", "Cheap", "Dirt", "Dirty", "Disgusting", "Dismal", "Down", "Drab", "Dreck", "Dust", "Fecal", "Feeble", "Fetid", "Filthy", "Flimsy", "Foul", "Fragile", "Frail", "Garbage", "Grease", "Grim", "Grime", "Grisly", "Gross", "Grotesque", "Hideous", "Hollow", "Horrid", "Ill", "Inept", "Inferior", "Infirm", "Insignificant", "Junk", "Lesser", "Limp", "Little", "Lousy", "Low", "Lowborn", "Lowlife", "Lowly", "Meager", "Measly", "Mediocre", "Menial", "Messy", "Minor", "Miserable", "Monstrous", "Muck", "Mud", "Murky", "Nasty", "Noisome", "Paltry", "Pathetic", "Pesky", "Petty", "Pitiful", "Plague", "Puny", "Putrid", "Rancid", "Rank", "Raunchy", "Repulsive", "Revolting", "Rotten", "Sad", "Scant", "Scrap", "Senile", "Shame", "Shoddy", "Sick", "Slag", "Sleazy", "Slimey", "Slop", "Smut", "Soil", "Soot", "Sour", "Spoiled", "Stink", "Stinking", "Tainted", "Tiny", "Trash", "Trashy", "Trifling", "Trivial", "Ugly", "Useless", "Vile", "Waste", "Wicked", "Worthless", "Wracked", "Wretched"]; 3 var nm3 = ["Abnormality", "Ache", "Anomaly", "Ant", "Barbarian", "Bastard", "Beast", "Beetle", "Boar", "Boor", "Boy", "Brute", "Buffoon", "Bug", "Bum", "Corruption", "Crawler", "Creep", "Creeper", "Cretin", "Cricket", "Crud", "Crude", "Curse", "Demon", "Deviant", "Dog", "Dunce", "Dweller", "Fiend", "Flaw", "Flea", "Floom", "Fly", "Fool", "Freak", "Frog", "Girl", "Gnat", "Gnome", "Goblin", "Gremlin", "Halfwit", "Hybrid", "Imp", "Ingrate", "Insect", "Kobold", "Larva", "Leech", "Lewd", "Louse", "Lowlife", "Maggot", "Mistake", "Mite", "Mole", "Mongrel", "Monster", "Moth", "Mouse", "Mug", "Mule", "Mutt", "Nit", "Oaf", "Ogre", "Parasite", "Peon", "Pervert", "Pest", "Pig", "Prawn", "Rat", "Roach", "Rodent", "Runt", "Savage", "Scamp", "Scrub", "Scum", "Shrimp", "Skunk", "Sleaze", "Slime", "Slug", "Smut", "Snail", "Snake", "Snot", "Spider", "Termite", "Tick", "Toad", "Trash", "Troll", "Twerp", "Vermin", "Weasel", "Weevil", "Whelp", "Worm"]; 4 var br = ""; 5 6 function nameGen(type) { 7 var tp = type; 8 var element = document.createElement("div"); 9 element.setAttribute("id", "result"); 10 for (i = 0; i < 10; i++) { 11 if (i < 5) { 12 rnd = Math.floor(Math.random() * nm1.length); 13 names = nm1[rnd]; 14 } else { 15 rnd = Math.floor(Math.random() * nm2.length); 16 rnd2 = Math.floor(Math.random() * nm3.length); 17 names = nm2[rnd] + " " + nm3[rnd2]; 18 } 19 br = document.createElement('br'); 20 element.appendChild(document.createTextNode(names)); 21 element.appendChild(br); 22 } 23 if (document.getElementById("result")) { 24 document.getElementById("placeholder").removeChild(document.getElementById("result")); 25 } 26 document.getElementById("placeholder").appendChild(element); 27 }