pirateShipNames.js (3108B)
1 var nm1 = ["", "", "", "", "", "", "Adventure", "Anger of the", "Angry", "Barbaric", "Bearded", "Black", "Blasted", "Crimson", "Sanguine", "Blind", "Bloodthirsty", "Bloody", "Broken", "Buccaneers", "Burning", "Cacophonous", "Captains", "Corrupted", "Cruel", "Cry", "Cry of the", "Curse of the", "Cursed", "Damnation of the", "Damned", "Davy Jones", "Death of", "Deceit of", "Deceitful", "Devils", "Dirty", "Discourteous", "Silent", "Disgrace of the", "Disgraced", "Disgraceful", "Dishonorable", "Disrespectful", "Dragons", "Drunken", "Elusive", "Evil", "Fall of", "Fearful", "Fearful Grail of", "Festering", "Filthy", "Flying", "Fortune", "Foul Serpent of", "Gold", "Golden", "Good", "Greed of the", "Greedy", "Grief of the", "Hades", "Happy", "Hateful", "Hell-born", "Hellish", "Homicidal", "Horrid", "Howl of the", "Howling", "Howling ", "Impolite", "Killers", "Liberty", "Little", "Loyal", "Lust of the", "Mad", "Grand", "Madness of the", "Mangy", "Mayflower", "Most", "Murderers", "Murderous", "Mermaid's", "Neptune's", "New", "Last", "Night", "Nights", "Oceans", "Pillaging", "Pirates", "Plundering", "Poison", "Poisoned", "Poisonous", "Poseidon's", "Pride of the", "Privateers", "Rancid", "Red", "Revenge", "Rising", "Rude", "Sadness of the", "Savage", "Scurvy", "Sea", "Seas", "Shadows of the", "Snap", "Speedy", "Sudden", "Uncultured", "Vicious", "Victory", "Vile", "White"]; 2 var nm2 = ["Anger", "Abandoned", "Scorn", "Tainted", "Atlantis", "Captain", "Caribbean", "Corruption", "Corsair", "Coward", "Curse", "Cutlass", "Dagger", "Damnation", "Damned", "Death", "Deceit", "Delight", "Delivery", "Demon", "Disgrace", "Doom", "Doubloon", "Dragon", "Eel", "Executioner", "Executioners", "Fall", "Fear", "Fortune", "Galley", "Ghost", "Gold", "Grail", "Hades", "Hangman", "Hind", "Horror", "Howl", "Insanity", "James", "Jewel", "Killer", "Killers", "King", "Knave", "Lightning", "Lust", "Manta", "Minnow", "Tide", "Murderer", "Murderers", "Night", "North", "Pearl", "Pillager", "Pirate", "Plague", "Plunder", "Plunderer", "Plunderers", "Princess", "Privateer", "Raider", "Rambler", "Ranger", "Return", "Revenge", "Saber", "Scream", "Sea", "Seas", "Marauders", "Swashbucklers", "Rovers", "Sea Rovers", "Buccaneers", "Rose", "Rift", "Deceit", "Secret", "Serpent", "Servant", "Servants", "Seven Seas", "Shark", "Slave", "Squid", "Storm", "Strumpet", "Sun", "Terror", "Tortuga", "Treasure", "Trinity", "Wolf"]; 3 var br = ""; 4 5 function nameGen(type) { 6 var tp = type; 7 var element = document.createElement("div"); 8 element.setAttribute("id", "result"); 9 for (i = 0; i < 10; i++) { 10 rnd = Math.floor(Math.random() * nm1.length); 11 rnd2 = Math.floor(Math.random() * nm2.length); 12 names = "The " + nm1[rnd] + " " + nm2[rnd2]; 13 br = document.createElement('br'); 14 element.appendChild(document.createTextNode(names)); 15 element.appendChild(br); 16 } 17 if (document.getElementById("result")) { 18 document.getElementById("placeholder").removeChild(document.getElementById("result")); 19 } 20 document.getElementById("placeholder").appendChild(element); 21 }