diff --git a/src/app/content.coffee b/src/app/content.coffee index 213ed25cb2..78aa2b7adc 100644 --- a/src/app/content.coffee +++ b/src/app/content.coffee @@ -1,13 +1,13 @@ module.exports = defaultTasks: [ - {type: 'habit', text: '1h Productive Work', notes: 'Habits: Constantly Track
For some habits, it only makes sense to gain points (like this one).', value: 0, up: true, down: false } - {type: 'habit', text: 'Eat Junk Food', notes: 'For others, it only makes sense to lose points', value: 0, up: false, down: true} + {type: 'habit', text: '1h Productive Work', notes: '-- Habits: Constantly Track --\nFor some habits, it only makes sense to *gain* points (like this one).', value: 0, up: true, down: false } + {type: 'habit', text: 'Eat Junk Food', notes: 'For others, it only makes sense to *lose* points', value: 0, up: false, down: true} {type: 'habit', text: 'Take The Stairs', notes: 'For the rest, both + and - make sense (stairs = gain, elevator = lose)', value: 0, up: true, down: true} - {type: 'daily', text: '1h Personal Project', notes: 'Dailies: Complete Once a Day
At the end of each day, non-completed Dailies dock you points.', value: 0, completed: false } + {type: 'daily', text: '1h Personal Project', notes: '-- Dailies: Complete Once a Day --\nAt the end of each day, non-completed Dailies dock you points.', value: 0, completed: false } {type: 'daily', text: 'Exercise', notes: "If you are doing well, they turn green and are less valuable (experience, gold) and less damaging (HP). This means you can ease up on them for a bit.", value: 3, completed: false } {type: 'daily', text: '45m Reading', notes: 'But if you are doing poorly, they turn red. The worse you do, the more valuable (exp, gold) and more damaging (HP) these goals become. This encourages you to focus on your shortcomings, the reds.', value: -10, completed: false } - {type: 'todo', text: 'Call Mom', notes: "Todos: Complete Eventually
Non-completed Todos won't hurt you, but they will become more valuable over time. This will encourage you to wrap up stale Todos.", value: -3, completed: false } - {type: 'reward', text: '1 Episode of Game of Thrones', notes: 'Rewards: Treat Yourself!
As you complete goals, you earn gold to buy rewards. Buy them liberally - rewards are integral in forming good habits.', value: 20 } + {type: 'todo', text: 'Call Mom', notes: "-- Todos: Complete Eventually --\nNon-completed Todos won't hurt you, but they will become more valuable over time. This will encourage you to wrap up stale Todos.", value: -3, completed: false } + {type: 'reward', text: '1 Episode of Game of Thrones', notes: '# Rewards: Treat Yourself!\nAs you complete goals, you earn gold to buy rewards. Buy them liberally - rewards are integral in forming good habits.', value: 20 } {type: 'reward', text: 'Cake', notes: 'But only buy if you have enough gold - you lose HP otherwise.', value: 10 } ]