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.
40 lines
4.3 KiB
JavaScript
40 lines
4.3 KiB
JavaScript
var nm3 = ["Boys", "Brothers", "Design", "Dream", "Generation", "Genesis", "Girls", "Guys", "Infinity", "Moment", "Morning", "Party", "Passion", "School", "Sisters", "Unlimited", "Zone"];
|
|
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"];
|
|
var nm5 = ["-", " ", " "];
|
|
|
|
function nameGen() {
|
|
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"];
|
|
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"];
|
|
var br = "";
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
nTp = Math.random() * 6 | 0;
|
|
if (nTp < 3) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
if (nTp === 0) {
|
|
rnd2 = Math.random() * nm4.length | 0;
|
|
rnd3 = Math.random() * nm5.length | 0;
|
|
names = nm4[rnd2] + nm5[rnd3] + nm1[rnd];
|
|
} else {
|
|
names = nm1[rnd];
|
|
}
|
|
} else {
|
|
rnd = Math.random() * nm2.length | 0;
|
|
if (nTp === 3) {
|
|
rnd2 = Math.random() * nm3.length | 0;
|
|
names = nm2[rnd] + " " + nm3[rnd2];
|
|
} else {
|
|
names = nm2[rnd];
|
|
}
|
|
}
|
|
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);
|
|
}
|