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.

27 lines
2.8 KiB
JavaScript

var nm1 = ["Age", "Alcohol", "Anger", "Arthropod", "Aurora", "Balance", "Bird", "Blood", "Bone", "Bubble", "Calm", "Camouflage", "Canine", "Chaos", "Cloud", "Color", "Coral", "Crystal", "Darkness", "Death", "Desire", "Dream", "Dust", "Echo", "Electricity", "Emotion", "Energy", "Fear", "Feline", "Fish", "Frost", "Fungus", "Gravity", "Growth", "Hail", "Hatred", "Ice", "Imagination", "Jewel", "Laughter", "Lava", "Leech", "Light", "Lightning", "Lizard", "Luck", "Magnetism", "Memory", "Metal", "Metamorphosis", "Mud", "Muscle", "Oil", "Pain", "Paper", "Patience", "Plague", "Poison", "Pride", "Puppet", "Rain", "Rainbow", "Reptile", "Sand", "Sensation", "Shadow", "Sight", "Sleep", "Smell", "Smoke", "Snow", "Song", "Sorrow", "Spider", "Spore", "Steam", "Taste", "Thorn", "Thought", "Time", "Twilight", "Ursine", "Vacuum", "Venom", "Vibration", "Vine", "Virus", "Voice", "Void", "Web", "Wing", "Wood"];
var nm2 = ["Altar", "Ant", "Antler", "Bat", "Beach", "Bear", "Beetle", "Bell", "Boar", "Book", "Bovine", "Brain", "Bridge", "Bulb", "Bush", "Canvas", "Cat", "Cave", "Chain", "Claw", "Collar", "Cove", "Crib", "Cricket", "Crow", "Dock", "Doll", "Dream", "Eagle", "Elbow", "Elephant", "Eye", "Face", "Fang", "Farm", "Field", "Finger", "Fish", "Fly", "Foot", "Forest", "Frog", "Garden", "Giant", "Glacier", "Goat", "Grove", "Harbor", "Hare", "Head", "Heron", "Hill", "Hook", "Hornet", "Hound", "Isle", "Knot", "Lake", "Library", "Lighthouse", "Lion", "Lizard", "Locust", "Maid", "Mask", "Mill", "Mine", "Mirror", "Monkey", "Moon", "Mosquito", "Mouse", "Mouth", "Nail", "Neck", "Needle", "Night", "Oasis", "Orchard", "Owl", "Park", "Pig", "Pond", "Pool", "Prison", "Puppet", "Quill", "Rabbit", "Rat", "Rhino", "Ricefield", "Ring", "River", "Road", "Roof", "Rope", "Ruin", "Sea", "Servant", "Shadow", "Shark", "Ship", "Shore", "Snail", "Spa", "Stitched", "Storm", "Straw", "Teeth", "Throne", "Tick", "Tiger", "Toad", "Tomb", "Tooth", "Tower", "Toy", "Turtle", "Tusk", "Urchin", "Volcano", "Wasp", "Waterfall", "Weaver", "Web", "Woods"];
var br = "";
function nameGen(type) {
var tp = type;
$('#placeholder').css('textTransform', 'capitalize');
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
if (i < 5) {
rnd = Math.random() * nm1.length | 0;
nMs = nm1[rnd] + " Breathing";
} else {
rnd = Math.random() * nm2.length | 0;
nMs = nm2[rnd] + " Demon";
}
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);
}