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.
28 lines
4.2 KiB
JavaScript
28 lines
4.2 KiB
JavaScript
var nm1 = ["Ahern", "Ahren", "Aiken", "Allen", "Auliffe", "Barrett", "Barry", "Beirne", "Bodkin", "Boland", "Boylan", "Boyle", "Brallaghan", "Breen", "Brennan", "Brien", "Broder", "Broderick", "Byrne", "Caffrey", "Cahan", "Cahill", "Callaghan", "Carey", "Carney", "Carolan", "Caroll", "Casey", "Clancy", "Cody", "Coffey", "Coghlan", "Collins", "Colman", "Connon", "Cormick", "Dalton", "Daly", "Dargan", "Davin", "Davoren", "Dea", "Dempsey", "Devane", "Devlin", "Dillon", "Dinan", "Dineen", "Doheny", "Doherty", "Donnell", "Donnellan", "Donnelly", "Donovan", "Doolan", "Dooley", "Doral", "Dorcey", "Dorgan", "Dorrian", "Dowey", "Dowling", "Downey", "Downing", "Doyle", "Driscoll", "Duddy", "Duff", "Dugan", "Duggan", "Dunn", "Dunphy", "Egan", "Fahy", "Fallon", "Falloone", "Farley", "Farrell", "Farrelly", "Felan", "Ferrell", "Finn", "Finnegan", "Flaherty", "Flanagan", "Flannery", "Fleming", "Flynn", "Fogarty", "Foley", "Forde", "Fox", "Friel", "Gaffney", "Gallagher", "Galvin", "Gara", "Garrihy", "Garvey", "Garvin", "Geary", "Gerty", "Gibbons", "Gilmore", "Gilroy", "Gleeson", "Glissane", "Gorman", "Gormley", "Gowan", "Grady", "Grannell", "Grehan", "Grimes", "Hackett", "Hagan", "Halloran", "Hanlon", "Hanly", "Hanneen", "Hannon", "Hanraghty", "Hanvey", "Hara", "Haren", "Hart", "Hartigan", "Haugh", "Haughey", "Hayes", "Hea", "Healy", "Heffernan", "Hegarty", "Hely", "Henchy", "Henly", "Hennessy", "Heyne", "Hickey", "Higgin", "Higgins", "Holian", "Hurley", "Hynes", "Jennings", "Jordan", "Joyce", "Kane", "Kavanagh", "Keane", "Kearny", "Keating", "Keaty", "Keeffe", "Keegan", "Keenan", "Keevan", "Keily", "Kelleher", "Kelly", "Kennedy", "Kenny", "Kerrane", "Kerrisk", "Kieran", "Kilroy", "Kindellan", "Kinnerk", "Kinsella", "Kirwan", "Lally", "Lane", "Larcan", "Laverty", "Lavery", "Lawlor", "Leary", "Leavy", "Lee", "Lenaghan", "Lennon", "Leonard", "Linehan", "Lonergan", "Lowry", "Lyne", "Lynn", "Madden", "Madigan", "Magauran", "Magian", "Maguire", "Maher", "Mahony", "Mainey", "Malley", "Malone", "Mangan", "Mannin", "Manning", "Mannion", "Mara", "Martin", "Meighan", "Mellan", "Melville", "Miley", "Millea", "Mitchell", "Mohan", "Molloy", "Molony", "Monaghan", "Monahan", "Mongan", "Mooney", "Moore", "Moran", "More", "Moriarty", "Morrin", "Morris", "Morrison", "Morrissey", "Muckley", "Mulally", "Mullan", "Mullen", "Mulligan", "Mulrian", "Murphy", "Murray", "Murrily", "Murry", "Nagle", "Neill", "Nerney", "Neylan", "Nolan", "Nunan", "Owens", "Pender", "Phelan", "Powell", "Purcell", "Queally", "Quinelly", "Quinn", "Regan", "Reilly", "Reynolds", "Roche", "Rochfort", "Rogers", "Rorke", "Rourke", "Ryan", "Scanlan", "Scullion", "Scully", "Shannon", "Shea", "Sheahan", "Sheehan", "Sheridan", "Shiel", "Sullivan", "Tiernan", "Tierney", "Toole", "Tracy", "Troy", "Tully", "Vaughan", "Walsh", "Ward", "Whelan", "Woulfe"];
|
|
var nm2 = ["blue", "bright", "bronze", "cloud", "crown", "dagger", "dark", "dawn", "death", "doom", "dream", "dusk", "emerald", "fey", "fray", "ghost", "glade", "gold", "green", "gray", "grim", "jade", "ley", "light", "marsh", "mist", "moon", "nether", "night", "rain", "razor", "red", "shadow", "sharp", "silver", "sky", "snow", "stag", "steel", "storm", "sun", "thorn", "thunder", "twilight", "white", "wind", "wraith", "wrath"];
|
|
var nm3 = ["beak", "bill", "buck", "chase", "chaser", "claw", "crest", "dive", "fall", "feather", "flight", "head", "plume", "quill", "storm", "stormer", "tail", "talon", "watcher", "wing"];
|
|
var br = "";
|
|
|
|
function nameGen() {
|
|
$('#placeholder').css('textTransform', 'capitalize');
|
|
var element = document.createElement("div");
|
|
element.setAttribute("id", "result");
|
|
for (i = 0; i < 10; i++) {
|
|
if (i < 5) {
|
|
rnd = Math.random() * nm1.length | 0;
|
|
nMs = nm1[rnd];
|
|
} else {
|
|
rnd = Math.random() * nm2.length | 0;
|
|
rnd2 = Math.random() * nm3.length | 0;
|
|
nMs = nm2[rnd] + nm3[rnd2];
|
|
}
|
|
br = document.createElement('br');
|
|
element.appendChild(document.createTextNode(nMs));
|
|
element.appendChild(br);
|
|
}
|
|
if (document.getElementById("result")) {
|
|
document.getElementById("placeholder").removeChild(document.getElementById("result"));
|
|
}
|
|
document.getElementById("placeholder").appendChild(element);
|
|
}
|