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.
33 lines
2.6 KiB
JavaScript
33 lines
2.6 KiB
JavaScript
var br = "";
|
|
|
|
function nameGen() {
|
|
var nm1 = ["A'Tuin", "Ace", "Anemone", "Aphrodite", "Apollo", "Aqualis", "Aqualon", "Aquanis", "Aquara", "Aquifis", "Aquira", "Aquiris", "Aquis", "Aristurtle", "Askim", "Aurelio", "Awkward", "Azure", "Azuris", "Barney", "Battletoad", "Bay", "Bayou", "Beach", "Beachie", "Bernard", "Blastoise", "Blitzer", "Bolt", "Boomer", "Bowser", "Brine", "Brooke", "Brooks", "Bubba", "Bubbles", "Buster", "Caenum", "Callypso", "Cascade", "Champion", "Chelle", "Chelsea", "Chelsie", "Chessie", "Chester", "Chips", "Clarity", "Coral", "Crescent", "Crush", "Darwin", "Delta", "Donatello", "Doomdome", "Durdle", "Explorer", "Flash", "Flo", "Floats", "Fluvis", "Galap", "Galapagos", "Goliath", "Harbor", "Hare", "Haven", "Helmut", "Hermes", "Hover", "Hydran", "Hydris", "Hydrius", "Hydrox", "Isla", "Kai", "Kelpe", "Kelpie", "Kid", "Koopa", "Leonardo", "Limu", "Limus", "Marin", "Marina", "Marine", "Marlin", "Marshell", "Michaelangelo", "Michelle", "Monse", "Monsoo", "Moor", "Mortimer", "Murtle", "Mutant", "Myrtle", "Neptis", "Neptulus", "Neptune", "Nessy", "Nichelle", "Ocea", "Oceanne", "Pagos", "Poole", "Poseidon", "Puddles", "Pudfoot", "Puds", "Racer", "Rachelle", "Rane", "Raphael", "Rayne", "Reef", "Retaw", "Rio", "River", "Rivule", "Saline", "Salis", "Sandie", "Scute", "Scutescoot", "Scutey", "Scutiepie", "Shela", "Shelbie", "Shelbs", "Sheldan", "Sheldon", "Sheldyn", "Shelene", "Shellebration", "Shelleigh", "Shellie", "Shellion", "Snappy", "Speedy", "Squalos", "Squirt", "Squirtle", "Storm", "Strom", "Taco", "Tank", "Tempest", "Tempestus", "Tide", "Toad", "Torque", "Tortankamun", "Tortellini", "Tsuna", "Tsunis", "Turbo", "Turtley", "Tyde", "Typhoon", "Typhos", "Vapora", "Vapore", "Vapos", "Voldetort", "Wade", "Yarrow"];
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
nTp = Math.random() * 50 | 0;
|
|
if (nTp === 0 && first !== 0 && triggered === 0) {
|
|
nTp = Math.random() * 5 | 0;
|
|
if (nTp === 0) {
|
|
creeper();
|
|
} else if (nTp < 3) {
|
|
herobrine();
|
|
} else {
|
|
enderman();
|
|
}
|
|
} else {
|
|
for (i = 0; i < 10; i++) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
nMs = nm1[rnd];
|
|
nm1.splice(rnd, 1);
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(nMs));
|
|
element.appendChild(br);
|
|
}
|
|
first++;
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|
|
}
|