rewards.py 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "milestones": {
  29. "milestone1": [
  30. "red hat",
  31. 50
  32. ],
  33. "milestone2": [
  34. "blue hat",
  35. 100
  36. ],
  37. "milestone3": [
  38. "green hat",
  39. 150
  40. ]
  41. }
  42. },
  43. "doathing": {
  44. "price": 100,
  45. "type": "special",
  46. "cmd": "/path/to/doathing.script",
  47. "info": "Executes a command on the host system.",
  48. "categories": [
  49. "alwaysactive"
  50. ],
  51. "cooldown": 0
  52. }
  53. }