UNPKG

asana-phrase

Version:

Random error phrase generator used by Asana

85 lines (79 loc) 4.75 kB
// Dictionaries of words to use as parts of phrases. // These are all chosen to be short words (1-2 syllables), to keep the // resulting phrases short. var subjects = [ 'aardvarks', 'alpacas', 'ants', 'apes', 'baboons', 'badgers', 'bats', 'bears', 'beavers', 'bees', 'birds', 'bison', 'bobcats', 'bullfrogs', 'bulls', 'bunnies', 'buzzards', 'camels', 'catfish', 'cats', 'cattle', 'cheetahs', 'chickens', 'chipmunks', 'cobras', 'cougars', 'crabs', 'crickets', 'crows', 'deer', 'dogs', 'dolphins', 'donkeys', 'doves', 'ducks', 'eagles', 'eels', 'elephants', 'elk', 'emus', 'ewoks', 'falcons', 'ferrets', 'fish', 'fleas', 'flies', 'foxes', 'frogs', 'gazelle', 'geese', 'gerbils', 'giraffes', 'goats', 'goblins', 'gorillas', 'groundhogs', 'hawks', 'hippos', 'hogs', 'horses', 'hounds', 'jackals', 'jaguars', 'kittens', 'klingons', 'lambs', 'leeches', 'lemmings', 'leopards', 'ligers', 'lions', 'lizards', 'llamas', 'lobsters', 'marmots', 'mice', 'monkeys', 'moose', 'mules', 'newts', 'orcs', 'otters', 'owls', 'oysters', 'pandas', 'peacocks', 'penguins', 'pidgeons', 'pigs', 'pumas', 'puppies', 'quails', 'rabbits', 'raccoons', 'rats', 'reindeer', 'rhinos', 'roosters', 'salmon', 'seals', 'sharks', 'sheep', 'shrimp', 'skunks', 'slugs', 'snails', 'snakes', 'spiders', 'squid', 'squirrels', 'starfish', 'stingrays', 'swans', 'tigers', 'toads', 'trout', 'tuna', 'turkeys', 'turtles', 'urchins', 'vipers', 'vultures', 'warthogs', 'whales', 'wolves', 'woodchucks', 'yaks', 'zebras' ]; var adjectives = [ 'awful', 'bad', 'bashful', 'berserk', 'big', 'bizarre', 'black', 'blue', 'boring', 'brawny', 'bright', 'bumpy', 'burly', 'cagey', 'cheerful', 'chilly', 'chubby', 'classy', 'clumsy', 'cold', 'crazy', 'creepy', 'cuddly', 'dashing', 'dirty', 'dizzy', 'drunk', 'dry', 'dull', 'dusty', 'eager', 'evil', 'fancy', 'fast', 'fat', 'faulty', 'fearless', 'filthy', 'foamy', 'friendly', 'funny', 'gentle', 'giant', 'glossy', 'good', 'goofy', 'great', 'greedy', 'green', 'groovy', 'grumpy', 'guilty', 'hairy', 'handsome', 'happy', 'healthy', 'heavy', 'helpful', 'high', 'huge', 'hungry', 'icky', 'itchy', 'jazzy', 'jealous', 'jolly', 'jumpy', 'kind', 'large', 'lazy', 'lean', 'little', 'lively', 'lucky', 'macho', 'magenta', 'magic', 'massive', 'meek', 'mighty', 'mindless', 'nasty', 'needy', 'new', 'nice', 'noisy', 'odd', 'old', 'orange', 'pretty', 'prickly', 'proud', 'puffy', 'purple', 'quick', 'quiet', 'rabid', 'rebel', 'red', 'righteous', 'round', 'sad', 'sassy', 'scary', 'sedate', 'shallow', 'short', 'silly', 'skillful', 'skinny', 'sloppy', 'slow', 'small', 'smelly', 'sneaky', 'snobby', 'strange', 'tacky', 'tall', 'tan', 'tough', 'tricky', 'ugly', 'wicked', 'wise', 'yellow', 'young', 'zany' ]; var verbs = [ 'agree', 'applaud', 'argue', 'arise', 'arrive', 'attack', 'awaken', 'bake', 'bathe', 'beg', 'behave', 'bite', 'blink', 'blush', 'bounce', 'breathe', 'burrow', 'buzz', 'charge', 'chat', 'cheer', 'chuckle', 'chew', 'clap', 'cry', 'dance', 'dig', 'dive', 'drink', 'eat', 'feed', 'fight', 'flap', 'flee', 'float', 'fly', 'gather', 'glow', 'grunt', 'hang', 'hide', 'howl', 'hunt', 'itch', 'jog', 'joke', 'jostle', 'jump', 'kick', 'kneel', 'knit', 'krump', 'laugh', 'leap', 'leave', 'look', 'lope', 'march', 'mix', 'moan', 'nuzzle', 'observe', 'plan', 'play', 'plead', 'point', 'pray', 'punch', 'push', 'race', 'rejoice', 'relax', 'retire', 'return', 'roar', 'rub', 'rumble', 'run', 'rush', 'sail', 'scare', 'scrape', 'scratch', 'scream', 'scrub', 'search', 'shake', 'shiver', 'shrink', 'shrug', 'sigh', 'sing', 'sit', 'skip', 'slap', 'sleep', 'slide', 'slip', 'smash', 'snore', 'spar', 'speak', 'spit', 'stand', 'stare', 'step', 'sting', 'stomp', 'stretch', 'strike', 'study', 'stumble', 'swim', 'talk', 'think', 'tickle', 'travel', 'trot', 'twist', 'wait', 'walk', 'wander', 'watch', 'wave', 'whine', 'whisper', 'work', 'wriggle' ]; var adverbs = [ 'ably', 'always', 'angrily', 'badly', 'blindly', 'boldly', 'bravely', 'briefly', 'brightly', 'busily', 'calmly', 'clearly', 'cruelly', 'daily', 'easily', 'equally', 'exactly', 'fast', 'fiercely', 'fondly', 'gently', 'gladly', 'greedily', 'happily', 'hastily', 'honestly', 'hourly', 'hungrily', 'joyously', 'justly', 'kindly', 'lazily', 'loosely', 'loudly', 'madly', 'merrily', 'monthly', 'neatly', 'often', 'poorly', 'promptly', 'quickly', 'quietly', 'rarely', 'roughly', 'rudely', 'sadly', 'safely', 'sharply', 'shyly', 'slowly', 'smoothly', 'softly', 'soon', 'sternly', 'swiftly', 'tensely', 'tightly', 'too', 'warmly', 'weakly', 'well', 'wildly', 'yearly' ]; module.exports = { subjects: subjects, adjectives: adjectives, verbs: verbs, adverbs: adverbs };