offline-fantasy-name-generators

Offline version of www.fantasynamegenerators.com
git clone https://git.neptards.moe/neptards/offline-fantasy-name-generators.git
Log | Files | Refs | README

onePieceOrganizations.js (3409B)


      1 var nm1 = ["Aberrant", "Absent", "Acrobatic", "Adamant", "Adventure", "Albatross", "Ambition", "Ant", "Aristocat", "Aromatic", "Balloon", "Bandana", "Barbaric", "Bat Wing", "Battle", "Bear Claw", "Beauty", "Beetle", "Bell's Toll", "Berserk", "Big Wave", "Bitter", "Bizarre", "Blood", "Blue Whale", "Bored", "Broken Bottle", "Bubble", "Bull's Eye", "Cabbage", "Candlelight", "Carefree", "Carpe Diem", "Cash Cow", "Chain", "Champion", "Chaos", "Cheeky", "Clover", "Cobweb", "Colorful", "Colorless", "Courageous", "Crafty", "Craven", "Crazy", "Crow", "Crow's Nest", "Crown", "Crown Jewel", "Cutting Edge", "Daydream", "Dazzling", "Defiant", "Delirious", "Diamond", "Dinosaur", "Discount", "Disguised", "Donkey", "Dream", "Drunk", "Eagle Eye", "Earthquake", "Elderly", "Elegance", "Enchanted", "Ethereal", "Ethical", "Exit Plan", "Fabulous", "False", "False Hope", "Fanged", "Favored", "Feather", "Festive", "Fire", "First", "Flamboyant", "Flame", "Flower", "Fluffy", "Fluke", "Foamy", "Fog", "Forgetful", "Forsaken", "Fortune's", "Four-Leaf Clover", "Frozen", "Garden", "Gentle", "Ghost", "Giant", "Gifted", "Glorious", "Golden", "Goldfish", "Grand", "Grand Carp", "Grand Feast", "Grotesque", "Harbor", "Harmony", "Hearsay", "Heavenly", "Hermit Crab", "Hidden", "Hollow", "Honest", "Honorable", "Humongous", "Hungry", "Hypnotic", "Icicle", "Impulse", "Infamous", "Innocent", "Justice", "Kaleidoscope", "Ladybug", "Last Laugh", "Lazy", "Lizard", "Lonely", "Lovable", "Lucky", "Luxurious", "Mad", "Majestic", "Maniac", "Marked", "Masked", "Maximum", "Mellow", "Merciful", "Mindless", "Minimum", "Mirage", "Mirror Image", "Mountain", "Muscle Power", "Mysterious", "Nightmare", "Nimble", "Nocturnal", "Ornament", "Patchwork", "Peaceful", "Pelican", "Perfect Storm", "Perfumed", "Pinky Swear", "Pitch Perfect", "Poetry", "Poison", "Portly", "Prism", "Prize", "Punctual", "Quality", "Quiet", "Rabbit", "Radiant", "Raven", "Rebel", "Reckless", "Regular", "Revolution", "Rhythm", "Riddle", "River", "Ruthless", "Scary", "Second", "Secret", "Serpent", "Serpentine", "Shadow", "Shivering", "Silent", "Silver Piece", "Silverback", "Siren Song", "Skeletal", "Skeleton", "Sleepy", "Smiling", "Snail", "Spider", "Storm", "Striped", "Surprise", "Suspicious", "Swift", "Thunder", "Thunderstorm", "Tomorrow's", "Toothless", "Treebeard", "Trustworthy", "Typhoon", "Unarmed", "Unlucky", "Unsung", "Unusual", "Vagabond", "Vengeful", "Venom", "Vicious", "Victory", "Violet", "Volatile", "Whaleshark", "Whirlpool", "Whirlwind", "Wicked", "Winged", "Wretched"];
      2 var nm2 = ["Pirates", "Pirates", "Pirates", "Pirates", "Pirates", "Pirates", "Pirates", "Pirates", "Unit", "Knights", "Sisters", "Brothers", "Alliance", "Guard", "Guards", "Squad", "Branch", "Patrol", "Soldiers", "Party"];
      3 var br = "";
      4 
      5 function nameGen() {
      6     var element = document.createElement("div");
      7     element.setAttribute("id", "result");
      8     for (i = 0; i < 10; i++) {
      9         rnd = Math.random() * nm1.length | 0;
     10         rnd2 = Math.random() * nm2.length | 0;
     11         names = nm1[rnd] + " " + nm2[rnd2];
     12         br = document.createElement('br');
     13         element.appendChild(document.createTextNode(names));
     14         element.appendChild(br);
     15     }
     16     if (document.getElementById("result")) {
     17         document.getElementById("placeholder").removeChild(document.getElementById("result"));
     18     }
     19     document.getElementById("placeholder").appendChild(element);
     20 }