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.
25 lines
2.8 KiB
JavaScript
25 lines
2.8 KiB
JavaScript
function nameGen() {
|
|
var nm1 = ["Ace", "Anarchy", "Anger", "Apparition", "Arch", "Ash", "Ashes", "Aura", "Band", "Bandit", "Banshee", "Barbarian", "Barrage", "Beam", "Beast", "Behemoth", "Bite", "Blade", "Blaze", "Blight", "Blow", "Bolt", "Bones", "Boulder", "Brass", "Brute", "Burn", "Cast", "Cavalier", "Chain", "Champ", "Chance", "Chaos", "Cherub", "Clipper", "Cloud", "Crack", "Critter", "Crook", "Crow", "Crux", "Daemon", "Deacon", "Death", "Demon", "Design", "Desire", "Devil", "Diablo", "Dice", "Dogma", "Dragon", "Dragonfly", "Dusk", "Dust", "Echo", "Eclipse", "Edge", "End", "Enigma", "Fang", "Fiend", "Fire", "Flame", "Flint", "Flow", "Flux", "Force", "Fragment", "Freak", "Frost", "Fury", "Fuse", "Gargoyle", "Gem", "Ghost", "Giant", "Gladius", "Glutton", "Goliath", "Grim", "Guide", "Hawk", "Hazard", "Heart", "Hellion", "Hook", "Horn", "Horror", "Hound", "Ice", "Icon", "Imp", "Impulse", "Inquisitor", "Iron", "Jackal", "Jester", "Jewel", "Judge", "Knife", "Knight", "Leviathan", "Limbo", "Mammoth", "Maniac", "Martyr", "Mask", "Meridian", "Merit", "Mime", "Mind", "Mist", "Monster", "Motion", "Myth", "Naught", "Needle", "Night", "Ogre", "Omen", "Oracle", "Owl", "Paladin", "Paradox", "Paragon", "Pest", "Phantom", "Phoenix", "Pillar", "Plasma", "Prophet", "Purpose", "Pyre", "Quake", "Quiver", "Rain", "Rat", "Ray", "Revenant", "Riddle", "Rime", "Robin", "Rogue", "Ruse", "Saint", "Salt", "Sand", "Savage", "Scale", "Scout", "Secret", "Sentinel", "Seraph", "Serenity", "Serpent", "Shade", "Shadow", "Shift", "Shock", "Shockwave", "Silver", "Siren", "Sky", "Slip", "Slither", "Sliver", "Sly", "Snake", "Snow", "Song", "Soul", "Spark", "Specter", "Sphinx", "Spider", "Splinter", "Sprite", "Spyglass", "Steel", "Stitch", "Storm", "Summer", "Surprise", "Switch", "Taint", "Temper", "Templar", "Thunder", "Titan", "Toad", "Touch", "Trick", "Twist", "Umbra", "Vamp", "Varmint", "Veil", "Vermin", "Villain", "Viper", "Virtue", "Vision", "Void", "Vortex", "Wave", "Weasel", "Whip", "Whisper", "Winter", "Wraith", "Zealot"];
|
|
var br = "";
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.floor(Math.random() * nm1.length);
|
|
nTp = Math.random() * 10 | 0;
|
|
if (nTp === 0) {
|
|
rnd2 = Math.random() * 50 | 0 + 1;
|
|
} else {
|
|
rnd2 = Math.random() * 20 | 0 + 1;
|
|
}
|
|
names = nm1[rnd] + "-" + rnd2;
|
|
nm1.splice(rnd, 1);
|
|
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);
|
|
}
|