dictionary.h 817 B

12345678910111213141516171819202122232425262728
  1. /* reply database */
  2. struct {
  3. char *quote;
  4. char *reply;
  5. } dictionary [] = {
  6. {"xD", "Whats so funny now?"},
  7. {"k\r\n", "Can you not."},
  8. {"anime", "Okay. I am sorry you don't have a life, but I am going to stab you now."},
  9. {"time to eat", "if you were a bot, no eating is required ;)"},
  10. {"dinner", "if you were a bot, no eating is required ;)"},
  11. {"food", "if you were a bot, no eating is required ;)"},
  12. {">.>", "<.<"},
  13. {">_>", ">.>"},
  14. {"<.<", ">_>"},
  15. {"*bot*: install gentoo", "fien."},
  16. {"*bot*, install gentoo", "fien."},
  17. {"*bot*: are you a bot", "Nofuckingshit"},
  18. {"*bot*, are you a bot", "Nofuckingshit"},
  19. {"wat", "what*"},
  20. {"wut", "what*"},
  21. {"weeaboo", "go die, weeaboo for life c:"},
  22. {":(", "whats wrong?"},
  23. {":c", "whats with the sad faces?"},
  24. {"D:", "no sad faces!"},
  25. //{"", ""},
  26. {0, 0}
  27. };