jpopNames.js (4435B)
1 var nm3 = ["Boys", "Brothers", "Design", "Dream", "Generation", "Genesis", "Girls", "Guys", "Infinity", "Moment", "Morning", "Party", "Passion", "School", "Sisters", "Unlimited", "Zone"]; 2 var nm4 = ["A", "X", "Q", "1", "Z", "S", "U", "N", "A", "X", "Q", "1", "Z", "S", "U", "N", "A", "E", "I", "O", "U", "Y", "B", "C", "D", "F", "G", "H", "J", "K", "L", "M", "N", "P", "Q", "R", "S", "T", "V", "W", "X", "Z"]; 3 var nm5 = ["-", " ", " "]; 4 5 function nameGen() { 6 var nm1 = ["Adore", "Animals", "Anxiety", "Appeal", "Attack", "Attitude", "Basis", "Beast", "Bite", "Blade", "Boy Friends", "Breath", "Brood", "Buttons", "Candle", "Cannon", "Chains", "Chaos", "Cherry", "Chewed", "Click", "Clouds", "Conflict", "Control", "Courage", "Craving", "Creator", "Creature", "Crown", "Curves", "Delight", "Desire", "Deviants", "Dimples", "Droplet", "Effect", "Elegance", "Embrace", "Emotion", "Emphasis", "Empower", "Envy", "Eternity", "Explosion", "Feast", "Feather", "Fetish", "Figure", "Fire", "Flame", "Flavor", "Fling", "Flirt", "Flow", "Flower", "Fluke", "Flush", "Focus", "Fortune", "Fusion", "Ghost", "Gift", "Girl Friends", "Glance", "Glove", "Grace", "Grimace", "Harmony", "Heart", "Hearth", "Host", "Hush", "Ice", "Ignition", "Imagination", "Impulse", "Infamy", "Ink", "Jewel", "Juice", "Kiss", "Lace", "Liberty", "Link", "Lips", "Lolitas", "Love", "Lover", "Luck", "Lucky", "Lust", "Magic", "Mask", "Mercy", "Mistake", "Moment", "Motions", "Nerve", "Night", "Nightmare", "Omen", "Panic", "Paradise", "Passion", "Pause", "Peace", "Petal Metal", "Phantom", "Phase", "Picture Perfect", "Pivot", "Please", "Pleasure", "Poison", "Polish", "Present", "Promise", "Prophecy", "Provocation", "Quake", "Question", "Quiver", "Radiate", "Raze", "Reign", "Relax", "Release", "Relish", "Requiem", "Riddle", "Rose", "Rumor", "Rush", "Savage", "Scent", "Seduction", "Senses", "Serene", "Serpent", "Shade", "Shadow", "Silk", "Sin", "Slander", "Smile", "Smooch", "Snake", "Snuggle", "Sparks", "Spirit", "Spite", "Squeak", "Stardust", "Steam", "Sugar", "Suits", "Swagger", "Switch", "Tease", "Temptation", "Thrills", "Tremble", "Valentine", "Vanish", "Vanquish", "Veil", "Venom", "Wander", "Whisper", "Whistle", "Wiggle"]; 7 var nm2 = ["Aberrant", "Adorable", "Adventure", "Aftermath", "Ambition", "Angel", "Aspect", "Attack", "Attraction", "Babble", "Beauty", "Blossom", "Blue", "Blush", "Bubble", "Candy", "Champion", "Chaos", "Cheeky", "Chemistry", "Climax", "Cloud", "Courage", "Creator", "Creature", "Curiosity", "Curtsy", "Cushion", "Dance", "Daydream", "Devil", "Dream", "Enigma", "Eye", "Fantasy", "Feather", "Fire", "Flame", "Fling", "Flirt", "Flower", "Fusion", "Ghost", "Gift", "Grace", "Heart", "Hearth", "Hello", "Honey", "Hush", "Imagination", "Impulse", "Kiss", "Lace", "Liberty", "Love", "Luck", "Lucky", "Lust", "Magic", "Mask", "Masked", "Midnight", "Muscle", "Night", "Nightmare", "Panic", "Paradise", "Peace", "Petal", "Phantom", "Pleasure", "Poison", "Provocation", "Quake", "Quiver", "Riddle", "Risky", "Rose", "Rumor", "Rush", "Savage", "Scarlet", "Seduction", "Serpent", "Shade", "Shadow", "Silk", "Sin", "Slander", "Smile", "Smooch", "Snake", "Snuggle", "Sparks", "Spellbound", "Spirit", "Spite", "Stardust", "Steam", "Sugar", "Swagger", "Temptation", "Trouble", "Wicked"]; 8 var br = ""; 9 var element = document.createElement("div"); 10 element.setAttribute("id", "result"); 11 for (i = 0; i < 10; i++) { 12 nTp = Math.random() * 6 | 0; 13 if (nTp < 3) { 14 rnd = Math.random() * nm1.length | 0; 15 if (nTp === 0) { 16 rnd2 = Math.random() * nm4.length | 0; 17 rnd3 = Math.random() * nm5.length | 0; 18 names = nm4[rnd2] + nm5[rnd3] + nm1[rnd]; 19 } else { 20 names = nm1[rnd]; 21 } 22 } else { 23 rnd = Math.random() * nm2.length | 0; 24 if (nTp === 3) { 25 rnd2 = Math.random() * nm3.length | 0; 26 names = nm2[rnd] + " " + nm3[rnd2]; 27 } else { 28 names = nm2[rnd]; 29 } 30 } 31 br = document.createElement('br'); 32 element.appendChild(document.createTextNode(names)); 33 element.appendChild(br); 34 } 35 if (document.getElementById("result")) { 36 document.getElementById("placeholder").removeChild(document.getElementById("result")); 37 } 38 document.getElementById("placeholder").appendChild(element); 39 }