@xaroth8088/random-names
Version:
A random name generator for all kinds of things
11 lines (9 loc) • 2.32 kB
JavaScript
import { sample } from 'lodash-es';
export default function thrones() {
let names;
const nm1 = ['Adamant', 'Angel', 'Animal', 'Apocalypse', 'Arachnid', 'Arcane', 'Arch', 'Ashen', 'Aura', 'Barbarian', 'Barbaric', 'Barbed', 'Beastly', 'Behemoth', 'Bleak', 'Blood', 'Bloodied', 'Bone', 'Brilliant', 'Broken', 'Burning', 'Burnt', 'Butcher', 'Chaos', 'Cold', 'Corpse', 'Corrupt', 'Covert', 'Crescent', 'Crimson', 'Crumbled', 'Crushed', 'Crystal', 'Cursed', 'Dead', 'Deceiver', 'Demon', 'Deranged', 'Desert', 'Destiny', 'Devil', 'Diabolic', 'Diamond', 'Dire', 'Dishonored', 'Dragon', 'Dragonfire', 'Dread', 'Dream', 'Drunk', 'Ebon', 'Elemental', 'Elite', 'Ember', 'Eternal', 'Evil', 'Exalted', 'Exile', 'False', 'Feeble', 'Fire', 'Flower', 'Forlorn', 'Forsaken', 'Frozen', 'Funereal', 'Gentle', 'Ghost', 'Giant', 'Gilded', 'Glass', 'Glistening', 'Glowing', 'God', 'Graceful', 'Grand', 'Granite', 'Grave', 'Great', 'Green', 'Grim', 'Heavenly', 'Hell', 'Hellish', 'High', 'Holy', 'Horror', 'Hostile', 'Ice', 'Illusion', 'Impish', 'Impure', 'Industrious', 'Infernal', 'Insane', 'Iron', 'Isolated', 'Ivory', 'Jade', 'Legendary', 'Lich', 'Light', 'Lightning', 'Lizard', 'Lonely', 'Loyal', 'Lucky', 'Lunar', 'Mad', 'Magic', 'Magma', 'Malicious', 'Marsh', 'Master', 'Midnight', 'Mighty', 'Mindless', 'Mithril', 'Molten', 'Monster', 'Mountain', 'Mourning', 'Muddy', 'Mutant', 'Mute', 'Mystic', 'Necro', 'Nefarious', 'Nightmare', 'Noble', 'Obscure', 'Obsidian', 'Occult', 'Ocean', 'Onyx', 'Outcast', 'Paragon', 'Peasant', 'Phantom', 'Phoenix', 'Placid', 'Plague', 'Primal', 'Prime', 'Prophecy', 'Psycho', 'Puppet', 'Rabid', 'Ragged', 'Rainbow', 'Reaper', 'Regal', 'Renegade', 'Rose', 'Rotten', 'Royal', 'Ruined', 'Rune', 'Sable', 'Sanguine', 'Sapphire', 'Savage', 'Serpent', 'Shadow', 'Shielded', 'Silent', 'Sinister', 'Sinner', 'Skull', 'Sleeping', 'Smoldering', 'Snow', 'Solar', 'Sorrow', 'Soul', 'Spider', 'Spine', 'Spirit', 'Spiteful', 'Steel', 'Storm', 'Strife', 'Sullen', 'Supreme', 'Surface', 'Talon', 'Terror', 'Thorn', 'Thunder', 'Timeless', 'Titan', 'Torment', 'Traitor', 'Tranquil', 'Twilight', 'Undead', 'Unholy', 'Venom', 'Vile', 'Violet', 'Volcanic', 'Warlord', 'Water', 'Wayward', 'Welfare', 'Wicked', 'Widow', 'Wild', 'Winged', 'Wooden', 'Zodiac'];
{
names = `The ${sample(nm1)} Throne`;
return names;
}
}