2013-08-26 00:39:47 +00:00
|
|
|
// Re-Roll modal
|
|
|
|
|
div(modal='modals.reroll')
|
|
|
|
|
.modal-header
|
2013-12-01 17:58:03 +00:00
|
|
|
h3 Fortify: Back to Yellow
|
2013-08-26 00:39:47 +00:00
|
|
|
.modal-body
|
2013-08-28 01:13:05 +00:00
|
|
|
include ../gems
|
2013-08-26 00:39:47 +00:00
|
|
|
p.
|
2013-12-01 17:58:03 +00:00
|
|
|
Fortify will return all your tasks to a neutral (yellow) state, as if you'd just added them. Consider
|
|
|
|
|
this an option of last resort! Red tasks provide good incentive to improve. But if all that red fills you with
|
2013-08-26 00:39:47 +00:00
|
|
|
despair, and the beginning of each new day proves lethal, spend the Gems and catch a reprieve!
|
|
|
|
|
|
|
|
|
|
.modal-footer
|
|
|
|
|
span(ng-if='user.balance < 1')
|
2013-10-12 23:47:49 +00:00
|
|
|
a.btn.btn-success.btn-large(ng-click="modals.buyGems = true") Buy More Gems
|
2013-08-26 00:39:47 +00:00
|
|
|
span.gem-cost Not enough Gems
|
2013-08-29 04:20:38 +00:00
|
|
|
span(ng-if='user.balance >= 1', ng-controller='SettingsCtrl')
|
2013-12-01 17:58:03 +00:00
|
|
|
a.btn.btn-danger.btn-large(ng-click='reroll()') Fortify
|
2013-08-26 00:39:47 +00:00
|
|
|
span.gem-cost 4 Gems
|
|
|
|
|
|