rewards.py 854 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. REWARDS = {
  2. "hydrate": {
  3. "price": 14,
  4. "type": "redeem",
  5. "info": "I\'ll have a sip of my drink",
  6. "categories": [
  7. "alwaysactive"
  8. ],
  9. "cooldown": 0
  10. },
  11. "playgame": {
  12. "price": 1,
  13. "type": "vote",
  14. "info": "Should I play a game?",
  15. "categories": [
  16. "gaming"
  17. ],
  18. "cooldown": 0
  19. },
  20. "wearhat": {
  21. "target": 200,
  22. "type": "goal",
  23. "info": "I'll wear a hat.",
  24. "categories": [
  25. "alwaysactive"
  26. ],
  27. "cooldown": 0
  28. },
  29. "doathing": {
  30. "price": 100,
  31. "type": "special",
  32. "cmd": "/path/to/doathing.script",
  33. "info": "Executes a command on the host system.",
  34. "categories": [
  35. "alwaysactive"
  36. ],
  37. "cooldown": 0
  38. }
  39. }