UNPKG

@xaroth8088/random-names

Version:

A random name generator for all kinds of things

11 lines (9 loc) 1.85 kB
import { sample } from 'lodash-es'; export default function xMens() { let names; const nm1 = ['Matter Master', 'Skye', 'Conjurer', 'Invincible', 'Shift', 'Telescope', 'Wormhole', 'Reptile', 'Insect', 'Bullet', 'Venus', 'Puma', 'Lunar', 'Wireless', 'Vaccine', 'Perception', 'Springboard', 'Eclipse', 'Demon', 'Siren', 'Steelskin', 'Ace', 'Anarchy', 'Ape', 'Arachnid', 'Ash', 'Ashes', 'Augury', 'Aura', 'Bandit', 'Barrage', 'Bearpaw', 'Behemoth', 'Blaze', 'Blight', 'Blizzard', 'Bolt', 'Bones', 'Boulder', 'Brute', 'Bubble', 'Chaos', 'Chronos', 'Clairity', 'Clone', 'Cloud', 'Creature', 'Cryptic', 'Crystal', 'Daydream', 'Decay', 'Demon', 'Dice', 'Discharge', 'Disperse', 'Dragonfly', 'Dynamo', 'Echo', 'Electrode', 'Enigma', 'Fallout', 'Fangs', 'Feline', 'Fiend', 'Flint', 'Flow', 'Flux', 'Frost', 'Fury', 'Fuse', 'Gamble', 'Gargoyle', 'Ghost', 'Gimmick', 'Glutton', 'Granite', 'Grimm', 'Hazard', 'Hue', 'Hypnotic', 'Inferno', 'Infinity', 'Jackal', 'Jester', 'Katana', 'Knightmare', 'Light', 'Liquid', 'Luna', 'Lupine', 'Lupus', 'Mammoth', 'Mist', 'Mouse', 'Myth', 'Naught', 'Nightmare', 'Nightowl', 'Nightshade', 'Noise', 'Ogre', 'Omen', 'Onesize', 'Ooze', 'Optic', 'Oracle', 'Paladin', 'Pandemonium', 'Paradox', 'Particle', 'Pebble', 'Phonic', 'Phonix', 'Physique', 'Pipsqueak', 'Plague', 'Plasma', 'Pygmy', 'Pyre', 'Quake', 'Rime', 'Ruse', 'Savage', 'Scepter', 'Scout', 'Scramble', 'Seismic', 'Sentinel', 'Serenity', 'Serpent', 'Shade', 'Shadow', 'Shockwave', 'Sight', 'Siphon', 'Siren', 'Slither', 'Sliver', 'Sly', 'Snake', 'Snowflake', 'Solaris', 'Spark', 'Splinter', 'Stardust', 'Steel', 'Stretch', 'Swine', 'Switch', 'Thunder', 'Timber', 'Timeles', 'Tranquillity', 'Twin', 'Valkyrie', 'Vapor', 'Vermin', 'Viper', 'Virtue', 'Void', 'Vortex', 'Weasel', 'Whisper', 'Wisp', 'X-Ray', 'Yce']; { names = sample(nm1); return names; } }