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.

34 lines
2.1 KiB
JavaScript

var br = "";
var triggered = 0;
function nameGen() {
var nm1 = ["Abalone", "Aqua", "Arial", "Ariel", "Bate", "Bay", "Bayou", "Beaker", "Beaks", "Blotch", "Blue", "Briny", "Brook", "Brooke", "Bubbles", "Calamari", "Cerulea", "Cloud", "Cora", "Coral", "Crunch", "Cthulhu", "Dash", "Davy", "Diver", "Doctor", "Dyve", "Grabbles", "Harbor", "Harbour", "Haven", "Ink", "Inky", "Isla", "Jetty", "Jiggle", "Jinkies", "Jones", "Kai", "Kaia", "Kelby", "Kelpe", "Kraken", "Krill", "Lagoon", "Lagune", "Lake", "Leviathan", "Mako", "Malibu", "Mareen", "Marine", "Marinna", "Marlin", "Maryn", "Moor", "Moore", "Mudwiggle", "Muriel", "Nemo", "Neptuna", "Neptune", "Nero", "Oceana", "Oceane", "Ocky", "Octavia", "Octavius", "Octo", "Opal", "Pearl", "Peirene", "Pisces", "Plunge", "Poseidon", "Quiggly", "Razzle", "Reef", "Rio", "Ripley", "Riva", "River", "Sailor", "Salty", "Sandy", "Sapphire", "Scuba", "Shore", "Sidney", "Siren", "Sirena", "Sirene", "Slinky", "Smudge", "Soakes", "Sparkle", "Speedy", "Spider", "Splash", "Splish", "Splosh", "Sprinkle", "Squidditch", "Squiddy", "Squidward", "Squiggle", "Squiggles", "Squilliam", "Squimbleton", "Squirm", "Squishy", "Storm", "Tenta", "Tide", "Triton", "Tumble", "Waggle", "Wayde", "Wiggle", "Wiggleton", "Wriggle"];
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);
}
}