dracaenaeNames.js (2379B)
1 var nm1 = ["", "", "", "", "", "c", "d", "dh", "dr", "g", "gh", "gr", "l", "ll", "m", "mn", "n", "p", "ph", "phr", "s", "sh", "st", "sth", "sc", "t", "th", "thr", "v", "z", "zh"]; 2 var nm2 = ["a", "e", "i", "y", "a", "e", "i", "y", "a", "e", "i", "y", "a", "e", "i", "y", "a", "e", "i", "y", "a", "e", "i", "y", "a", "e", "i", "y", "ui", "oe", "ia", "ae", "ea", "eo", "ie"]; 3 var nm3 = ["b", "ch", "d", "dd", "dh", "dn", "f", "ff", "fr", "fl", "l", "ll", "lm", "ln", "lr", "m", "mp", "mb", "ml", "mn", "mr", "n", "nt", "nz", "ns", "nsh", "p", "ph", "phr", "phn", "phl", "r", "rr", "rl", "rn", "rm", "s", "ss", "sh", "shr", "st", "str", "sth", "t", "th", "tt", "thr", "tr", "ts", "v"]; 4 var nm4 = ["b", "d", "f", "l", "m", "n", "p", "r", "s", "t", "v"]; 5 var nm5 = ["a", "e", "i", "o"]; 6 var nm6 = ["", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "f", "h", "n", "ph", "s", "s", "sh", "sh", "th"]; 7 var br = ""; 8 9 function nameGen(type) { 10 $('#placeholder').css('textTransform', 'capitalize'); 11 var tp = type; 12 var element = document.createElement("div"); 13 element.setAttribute("id", "result"); 14 for (i = 0; i < 10; i++) { 15 nameMas(); 16 while (nMs === "") { 17 nameMas(); 18 } 19 br = document.createElement('br'); 20 element.appendChild(document.createTextNode(nMs)); 21 element.appendChild(br); 22 } 23 if (document.getElementById("result")) { 24 document.getElementById("placeholder").removeChild(document.getElementById("result")); 25 } 26 document.getElementById("placeholder").appendChild(element); 27 } 28 29 function nameMas() { 30 rnd = Math.random() * nm1.length | 0; 31 rnd2 = Math.random() * nm2.length | 0; 32 rnd3 = Math.random() * nm3.length | 0; 33 rnd4 = Math.random() * nm5.length | 0; 34 rnd5 = Math.random() * nm6.length | 0; 35 while (nm3[rnd3] === nm1[rnd] || nm3[rnd3] === nm6[rnd5]) { 36 rnd3 = Math.random() * nm3.length | 0; 37 } 38 if (i < 6) { 39 nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm5[rnd4] + nm6[rnd5]; 40 } else { 41 rnd6 = Math.random() * nm4.length | 0; 42 rnd7 = Math.random() * nm2.length | 0; 43 while (nm4[rnd6] === nm3[rnd3] || nm4[rnd6] === nm6[rnd5]) { 44 rnd6 = Math.random() * nm4.length | 0; 45 } 46 nMs = nm1[rnd] + nm2[rnd2] + nm3[rnd3] + nm5[rnd4] + nm4[rnd6] + nm2[rnd7] + nm6[rnd5]; 47 } 48 testSwear(nMs); 49 }