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

40 行
585 B

  1. module.exports = {
  2. estrid: [{
  3. msg: '*polishes some vials*'
  4. }, {
  5. msg: 'Where did I put that flask?'
  6. }, {
  7. msg: '*coughs*'
  8. }, {
  9. msg: `I hope the shop is ready on time`
  10. }],
  11. priest: [{
  12. msg: 'peace be with you'
  13. }, {
  14. msg: 'walk in the light'
  15. }],
  16. cow: [{
  17. msg: '*moos*'
  18. }],
  19. goat: [{
  20. msg: '*bleats*'
  21. }],
  22. pig: [{
  23. msg: '*oinks*'
  24. }],
  25. hermit: [{
  26. msg: '*strokes his beard*'
  27. }, {
  28. msg: 'Rodriguez, get away from the fire!'
  29. }, {
  30. msg: '*coughs*'
  31. }, {
  32. msg: `My back is killing me`
  33. }],
  34. rodriguez: [{
  35. msg: '*scratches for food*'
  36. }, {
  37. msg: '*crows*'
  38. }]
  39. };