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.2 KiB
JavaScript
34 lines
2.2 KiB
JavaScript
var br = "";
|
|
var triggered = 0;
|
|
|
|
function nameGen() {
|
|
var nm1 = ["Ace", "Albus", "Alpa", "Alpacalypse", "Alpacasso", "Alpie", "Amazon", "Anchor", "Andea", "Andean", "Bahama", "Bandana", "Baron", "Bashful", "Beau", "Beauty", "Belch", "Belchie", "Biscuit", "Blanca", "Bliss", "Blitz", "Blitzen", "Blizzard", "Blossom", "Bolt", "Boomerang", "Bootsie", "Bramble", "Bruno", "Bubbles", "Bucky", "Bud", "Buddy", "Buster", "Buzz", "Carl", "Chance", "Charm", "Chase", "Cheeks", "Chester", "Chewpaca", "Chip", "Cinnamon", "Cloud", "Clover", "Coco", "Comet", "Cookie", "Cosmo", "Cotton", "Cusco", "Daisy", "Dancer", "Dasher", "Dawn", "Dolly", "Drama", "Dribble", "Drift", "Drool", "Drools", "Duchess", "Duke", "Dusk", "Fedex", "Floof", "Fluffer", "Fozzy", "Furball", "Fuzzy", "Gambit", "Ginger", "Glama", "Guanaco", "Huacaya", "Indy", "Inkie", "Kendrik", "Kuzco", "Lady", "Lena", "Llala", "Llamanade", "Llamar", "Marshmellow", "Maverick", "Meeps", "Mellow", "Melody", "Moonbeam", "Nimbus", "Package", "Packie", "Patches", "Peaches", "Pilgrim", "Pompom", "Probllama", "Rebel", "Saliva", "Sally", "Silver", "Socks", "Spew", "Spewie", "Spit", "Spitball", "Spitfire", "Spits", "Spittle", "Spitz", "Splutter", "Spritz", "Spue", "Spuey", "Sputum", "Sputums", "Suri", "Thumper", "Thunder", "Trekkie", "Vicuña", "Walker", "Weaver", "Wonder", "Wumpkins"];
|
|
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);
|
|
}
|
|
}
|