Created
September 8, 2016 15:25
-
-
Save dariusk/f0839c90158dc2cc694eb109bb64ff84 to your computer and use it in GitHub Desktop.
adjective order lists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var opinion = [ | |
'beautiful', 'sweet', 'pretty', 'gorgeous', 'lovely', 'handsome', 'good', 'better', 'best', 'bad', 'worse', 'worst', 'wonderful', 'splendid', 'mediocre', 'awful', 'fantastic', 'ugly', 'clean', 'dirty', 'wasteful', 'difficult', 'comfortable', 'uncomfortable', 'valuable', 'worthy', 'worthless', 'useful', 'useless', 'important', 'evil', 'angelic', 'rare', 'scarce', 'poor', 'rich', 'disgusting', 'amazing', 'surprising', 'loathesome', 'unusual', 'usual', 'pointless', 'pertinent', | |
].pick(); | |
var size = [ | |
'large', 'heavy', 'light', 'big', 'small', 'little', 'tiny', 'tall', 'short', 'fat', 'thin', 'slender', 'willowy', 'lean', 'svelte', 'scrawny', 'skeletal', 'underweight', 'lanky', 'wide', 'enormous', 'huge', 'vast', 'great', 'gigantic', 'monstrous', 'mountainous', 'jumbo', 'wee', 'dense', 'weighty', 'slim', 'trim', 'hulking', 'hefty', 'giant', 'plump', 'tubby', 'obese', 'portly', | |
].pick(); | |
var age = [ | |
'young', 'old', 'baby', 'babyish', 'teenage', 'ancient', 'antique', 'old-fashioned', 'youthful', 'elderly', 'mature', 'adolescent', 'infantile', 'bygone', 'recent', 'modern', | |
].pick(); | |
var shape = [ | |
'round', 'circular', 'square', 'triangular', 'oval', 'sleek', 'blobby', 'flat', 'rotund', 'globular', 'spherical', 'wavy', 'straight', 'cylindrical', 'oblong', 'elliptical', 'zigzag', 'squiggly', 'crooked', 'winding', 'serpentine', 'warped', 'distorted', | |
].pick(); | |
var color = [ | |
'pink', 'red', 'orange', 'yellowish', 'dark-green', 'blue', 'purple', 'black', 'white', 'gray', 'brown', 'tanned', 'pastel', 'metallic', 'silver', 'colorless', 'transparent', 'translucent', | |
].pick(); | |
var origin = [ | |
'lunar', 'northern', 'oceanic', 'polar', 'equatorial', 'Floridian', 'American', 'Spanish', 'Canadian', 'Mexican', 'French', 'Irish', 'English', 'Australian', 'British', 'South African', 'Turkish', 'Belgian', 'Hungarian', 'Iranian', 'Iraqi', 'Saudi', 'Indian', 'Native American', 'Babylonian', 'Egyptian', 'Sumerian', 'Incan', 'Mayan', 'Inuit', 'Ghanan', 'Namibian', 'Nigerian', 'Kenyan', 'Sudanese', 'Ethiopian', 'Chinese', 'Japanese', 'Korean', 'Russian', 'Laotian', 'Cambodian', 'Vietnamese', 'Thai', 'Indonesian', 'Filipino', | |
].pick(); | |
var material = [ | |
'glass', 'wooden', 'cloth', 'concrete', 'fabric', 'cotton', 'plastic', 'leather', 'ceramic', 'china', 'metal', 'steel', 'silicon', 'styrofoam', 'stone', 'brick', 'paper', 'latex', 'iron', | |
].pick(); | |
var purpose = [ | |
'folding', | |
'swinging', | |
'work', | |
'racing', | |
'cooking', | |
'sleeping', | |
'dance', | |
'rolling', | |
'walking', | |
'swimming', | |
].pick(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment