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.1 KiB
JavaScript

var br = "";
function nameGen() {
var nm1 = ["Agaricus", "Amani", "Amanita", "Amma", "Angel", "Armillaria", "Auricularia", "Bello", "Boletus", "Bovista", "Calbovista", "Calvatia", "Cap", "Cappie", "Celium", "Clitocybe", "Clitopilus", "Coprinus", "Cordie", "Cordyceps", "Cremini", "Cremmie", "Death Cap", "Enoki", "Entoloma", "Flammulina", "Foongie", "Fungi", "Gomphus", "Grifola", "Gyromitra", "Helvella", "Hericium", "Hydnum", "Hygrophorus", "Inky", "Lacta", "Lactarius", "Lacti", "Lactius", "Lecci", "Leccinum", "Lentinus", "Lepiota", "Lepista", "Lycoperdon", "Marasmius", "Mold", "Moldie", "Moocelium", "Moold", "Mooldie", "Mooshie", "Morchella", "Morel", "Mushie", "Mushmush", "Mycelium", "Mycey", "Nameko", "Oyster", "Para", "Paramoo", "Pathie", "Pathogen", "Phlogiotis", "Pholiota", "Pleurotus", "Pluteus", "Poly", "Polyozellus", "Polypilus", "Polypore", "Polyporus", "Porcini", "Pore", "Porta", "Portabello", "Puffball", "Ramaria", "Roomba", "Rozites", "Russula", "Shaggy", "Shiitake", "Shimeji", "Shroom", "Shroomie", "Shroomoo", "Sparassis", "Spore", "Stalk", "Stew", "Steward", "Stewie", "Stinkie", "Stropharia", "Suillus", "Terfezia", "Thogennie", "Toad", "Toads", "Tremella", "Truffle", "Truffles", "Tuber", "Volvariella"];
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);
}
}