Feast 2.0!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
356 B

  1. import { RandomWord, ImproperNoun, Adjective } from './language'
  2. export const SwallowSound = new RandomWord([
  3. new ImproperNoun('gulp'),
  4. new ImproperNoun('glurk'),
  5. new ImproperNoun('glrkh')
  6. ]).all
  7. export const Slick = new RandomWord([
  8. new Adjective('slick'),
  9. new Adjective('slippery'),
  10. new Adjective('slimy'),
  11. new Adjective('glistening')
  12. ])