1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- REWARDS = {
- "hydrate": {
- "price": 14,
- "type": "redeem",
- "info": "I\'ll have a sip of my drink",
- "categories": [
- "alwaysactive"
- ],
- "cooldown": 0
- },
- "playgame": {
- "price": 1,
- "type": "vote",
- "info": "Should I play a game?",
- "categories": [
- "gaming"
- ],
- "cooldown": 0
- },
- "wearhat": {
- "target": 200,
- "type": "goal",
- "info": "I'll wear a hat.",
- "categories": [
- "alwaysactive"
- ],
- "cooldown": 0,
- "milestones": {
- "milestone1": [
- "red hat",
- 50
- ],
- "milestone2": [
- "blue hat",
- 100
- ],
- "milestone3": [
- "green hat",
- 150
- ]
- }
- },
- "doathing": {
- "price": 100,
- "type": "special",
- "cmd": "/path/to/doathing.script",
- "info": "Executes a command on the host system.",
- "categories": [
- "alwaysactive"
- ],
- "cooldown": 0
- }
- }
|