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.
40 lines
4.0 KiB
JavaScript
40 lines
4.0 KiB
JavaScript
var br = "";
|
|
|
|
function nameGen() {
|
|
var nm1 = ["Baconator", "Belly Nelly", "Boar", "Boarapart", "Boaregart", "Boaris", "Boarrie", "Bovi", "Buttons", "Chewbacon", "Choplin", "Choppie", "Chris P. Bacon", "Dudley", "Einswine", "Frankenswine", "Ham Solo", "Hamadeus", "Hambo", "Hambone", "Hamdrix", "Hamlet", "Hamlette", "Hammelton", "Hammibal", "Hamsel", "Hamtoya", "Hilpigger", "Hogwarts", "Iggy", "Jason Boarne", "Muddie", "Mudster", "Oinkdexter", "Oinkers", "Oinkie", "Oinksalot", "Peppa", "Piggie", "Piggie Smalls", "Piggle Wiggle", "Piggles", "Piggly Wiggly", "Piglet", "Piglette", "Pigsley", "Pinkie", "Pjork", "Plopper", "Porkchop", "Porkers", "Porkie", "Porkiepie", "Prosciutto", "Pumbaa", "Sausage", "Schnitzel", "Snoots", "Snortimer", "Snortimus", "Snortimus Prime", "Snortington", "Snowball", "Snuffles", "Snugums", "Sowso", "Spam", "Spamela", "Squeeps", "Stuffles"];
|
|
var nm2 = ["Abby", "Ace", "Acorn", "Admiral", "Amber", "Ascot", "Axel", "Bacon", "Badge", "Badger", "Bailey", "Beauty", "Beebee", "Bell", "Bella", "Bertha", "Betty", "Bing", "Blitz", "Blizz", "Blush", "Bowser", "Boxer", "Bramble", "Brandy", "Brew", "Bronco", "Buddy", "Bullet", "Button", "Buttons", "Caramel", "Casanova", "Cashew", "Caveman", "Checkers", "Chili", "Chips", "Chop", "Choplin", "Chris P. Bacon", "Chubs", "Coco", "Cookie", "Coral", "Cotton", "Crackle", "Daisy", "Dakota", "Dawn", "Deacon", "Dee", "Deedee", "Deuce", "Dew", "Dipper", "Dodge", "Dodger", "Doom", "Doppler", "Dot", "Dots", "Dottie", "Dove", "Duffy", "Dutchess", "Einswine", "Fizzle", "Flye", "Frazzle", "Frizzle", "Fuchsia", "Fudge", "Ginger", "Gizmo", "Glutton", "Goliath", "Gorge", "Gorger", "Gorgy", "Grace", "Greedo", "Grouch", "Grumby", "Gumball", "Gummy", "Hambo", "Hamilton", "Hamlet", "Hammer", "Hammibal", "Hannibal", "Hawke", "Hector", "Hercules", "Hog", "Hogger", "Hogzilla", "Hulk", "Iggy", "Judge", "June", "Jynx", "Lad", "Lily", "Lola", "Lulu", "Macho", "Maggie", "Magnum", "Magnum Pig", "Maple", "Marble", "Marbles", "Mello", "Mellow", "Missy", "Mittens", "Momma", "Muckie", "Mud", "Mudpie", "Mudster", "Nibble", "Nibbler", "Nibbles", "Noodle", "Noodles", "Norton", "Nugget", "Oinkee", "Oinkers", "Olive", "Onyx", "Opal", "Orbit", "Oreo", "Paddington", "Paprika", "Patches", "Peaches", "Pepper", "Pie", "Piggles", "Pigsley", "Pink", "Pinky", "Pookie", "Popcorn", "Poppy", "Porkchop", "Porkette", "Princess", "Prudence", "Puddle", "Pudge", "Pudgy", "Rambo", "Rambore", "Ringo", "Rosco", "Rose", "Roseate", "Rosie", "Rugby", "Rune", "Russell", "Salmone", "Scamper", "Scout", "Skye", "Slob", "Slobber", "Slobs", "Sludges", "Slushie", "Smokey", "Smudge", "Smudges", "Snoots", "Snortimer", "Snuff", "Snuffle", "Snuffles", "Spot", "Stuffles", "Stuffy", "Sugar", "Thistle", "Titan", "Trixie", "Truffle", "Trufflers", "Tulip", "Twinkie", "Twinkle", "Ursula", "Waddle", "Waddles", "Wedge", "Whopper", "Wiggle", "Wiggles", "Wilburt", "Wobble"];
|
|
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 < 2) {
|
|
herobrine();
|
|
} else {
|
|
enderman();
|
|
}
|
|
} else {
|
|
for (i = 0; i < 10; i++) {
|
|
if (i < 6) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
names = nm1[rnd];
|
|
nm1.splice(rnd, 1);
|
|
} else {
|
|
rnd = Math.random() * nm2.length | 0;
|
|
names = nm2[rnd];
|
|
nm2.splice(rnd, 1);
|
|
}
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(names));
|
|
element.appendChild(br);
|
|
}
|
|
first++;
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|
|
}
|