Feast 2.0!
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

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. ])