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.

25 lines
2.5 KiB
JavaScript

var names1 = ["Arcti", "Arctic", "Arctico", "Chill", "Chilla", "Chilley", "Chills", "Colde", "Coled", "Coola", "Coolio", "Forost", "Freez", "Freeze", "Fridge", "Fridged", "Frigi", "Frigid", "Frosbyte", "Fross", "Frost", "Frostbite", "Froza", "Froze", "Frozen", "Hail", "Hale", "Ice", "Icecube", "Icequ", "Iceqube", "Icey", "Icicle", "Kold", "Kool", "Nippy", "Pola", "Polara", "Polaro", "Qube", "Rime", "Ryme", "Sano", "Sanow", "Shiver", "Shivera", "Shivero", "Snow", "Wintera", "Wintrey", "Yce", "Ycicle"];
var names2 = ["Andarin", "Appel", "Appine", "Apple", "Aprico", "Apricot", "Avoca", "Avocado", "Bana", "Banan", "Berry", "Blueber", "Cantalou", "Cantaloupe", "Cheely", "Cherr", "Cherry", "Citro", "Citron", "Citrone", "Coconu", "Coconut", "Conut", "Cranber", "Cranberry", "Crant", "Curran", "Currant", "Darin", "Doorian", "Duria", "Durian", "Emil", "Fig", "Figg", "Gerine", "Gomang", "Goose", "Gooseber", "Gooseberry", "Granate", "Grape", "Grapefru", "Grapefruit", "Grapefrute", "Graype", "Guav", "Guava", "Iwik", "Kinpum", "Kiwi", "Kokonut", "Kuava", "Kumqua", "Kumquad", "Kumquat", "Lamone", "Lemon", "Lemone", "Lime", "Lych", "Lychee", "Lyme", "Mandar", "Mandarin", "Mango", "Mato", "Mellon", "Melo", "Melon", "Melone", "Nectari", "Nectarine", "Nilla", "Nolem", "Nomel", "Notric", "Odacova", "Ognam", "Orange", "Orango", "Otamot", "Pallum", "Papaw", "Papay", "Papaya", "Pawpaw", "Paya", "Peach", "Peache", "Pear", "Peare", "Peech", "Peere", "Pine", "Pineap", "Pineapple", "Plum", "Pomegra", "Pomegranate", "Pomel", "Pomelo", "Pricot", "Pump", "Pumpki", "Pumpkin", "Qiwi", "Quiwi", "Rango", "Rasber", "Raspberry", "Rasperry", "Rhubar", "Rhubarb", "Rubar", "Strawber", "Strawberry", "Taloupe", "Tanger", "Tangeri", "Tangerine", "Tarine", "Toma", "Tomato", "Vanilla", "Vocado"];
function nameGen() {
var br = "";
var element = document.createElement("div");
element.setAttribute("id", "result");
for (i = 0; i < 10; i++) {
if (i < 4) {
rnd = Math.floor(Math.random() * names1.length);
names = names1[rnd];
} else {
rnd = Math.floor(Math.random() * names2.length);
names = names2[rnd];
}
br = document.createElement('br');
element.appendChild(document.createTextNode(names));
element.appendChild(br);
}
if (document.getElementById("result")) {
document.getElementById("placeholder").removeChild(document.getElementById("result"));
}
document.getElementById("placeholder").appendChild(element);
}