__init__.py 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import pkgutil
  2. from rollbot import get_command_config, CommandConfiguration
  3. import commands.curse, commands.hangguy, commands.omen, commands.plex, commands.poll, commands.querying, commands.roll, commands.rollcoin, commands.session, commands.seychelles, commands.simple, commands.tarot, commands.teamspeak, commands.yell
  4. __all__ = ["config"]
  5. config = get_command_config().extend(
  6. CommandConfiguration(
  7. call_and_response={
  8. "info": "Hello!\nI am Rollbot 4.0 - a simple chatbot built in Python.\nI am licensed as open source under the MIT license.",
  9. "thanks": "You're welcome!",
  10. "guess": "Rollbot's back - tell a friend!",
  11. "unmeme": "get a job",
  12. "issues": "https://gogs.hiram.services/kirkleon/rollbot4/issues",
  13. "repo": "https://gogs.hiram.services/kirkleon/rollbot4/",
  14. "bump": "Bumping the chat!\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAll done!",
  15. "vore": "What? No",
  16. "break": "I'm too robust for that!",
  17. "rampart": "Hey guys can we please keep the topic to Rampart?",
  18. "panic": "https://imgur.com/PjAtZDp",
  19. "ah": "https://i.groupme.com/810x677.jpeg.8399fce5295f4116b152f7daa474353a.large",
  20. "sir": "https://i.groupme.com/368x475.png.01b9aa943ce040ebb4a893aae3d266f8.large",
  21. "groupme": "All your friends are right here, Neil!",
  22. "ta": "Ivan is a TA!",
  23. },
  24. aliases={
  25. "speemteek": "speamteek",
  26. "speemteak": "speamteek",
  27. "speamteak": "speamteek",
  28. "interpret": "inspire",
  29. "horoscope": "inspire",
  30. "lomg": "bump",
  31. "mute": "bump",
  32. "fs": "f",
  33. "hg": "hangguy",
  34. "cookie": "fortune",
  35. "wl": "watchlist",
  36. "choose": "choice",
  37. "omens": "omen",
  38. "pollhearts": "poll",
  39. "bubble": "bubblewrap",
  40. },
  41. )
  42. )