Feast 2.0!
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

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