diff --git a/common/locales/en/subscriber.json b/common/locales/en/subscriber.json index c448afe75f..2e37fc78c6 100644 --- a/common/locales/en/subscriber.json +++ b/common/locales/en/subscriber.json @@ -59,9 +59,10 @@ "timeTravelers": "Time Travelers", "timeTravelersTitleNoSub": "<%= linkStartTyler %>Tyler<%= linkEnd %> and <%= linkStartVicky %>Vicky<%= linkEnd %>", "timeTravelersTitle": "Mysterious Time Travelers", - "timeTravelersPopoverNoSub": "You'll need a Mystic Hourglass to summon the mysterious Time Travelers! <%= linkStart %>Subscribers<%= linkEnd %> earn one Mystic Hourglass for every three months of consecutive subscribing. Come back when you have a Mystic Hourglass, and the Time Travelers will fetch you a Subscriber Item Set from the past.... or maybe even the future.", - "timeTravelersPopover": "We see you have a Mystic Hourglass, so we will happily travel back in time for you! Please choose the Mystery Item Set you would like. You can see a list of the past item sets <%= linkStart %>here<%= linkEnd %>! If those don't satisfy you, perhaps you'd be interested in one of our fashionably futuristic Steampunk Item Sets?", - "mysticHourglassPopover": "Mystic Hourglass allow you to purchase previous months' subscriber sets.", + "timeTravelersPopoverNoSub": "You'll need a Mystic Hourglass trinket to summon the mysterious Time Travelers! <%= linkStart %>Subscribers<%= linkEnd %> earn one Mystic Hourglass for every three months of consecutive subscribing. Come back when you have a Mystic Hourglass, and the Time Travelers will fetch you a Subscriber Item Set from the past.... or maybe even the future.", + "timeTravelersPopover": "We see you have a Mystic Hourglass thingamajig, so we will happily travel back in time for you! Please choose the Mystery Item Set you would like. You can see a list of the past item sets <%= linkStart %>here<%= linkEnd %>! If those don't satisfy you, perhaps you'd be interested in one of our fashionably futuristic Steampunk Item Sets?", + "timeTravelersAlreadyOwned": "Congratulations! You already own all of the Mystery Items. Thanks for supporting the site!", + "mysticHourglassPopover": "Mystic Hourglass allows you to purchase previous months' subscriber sets.", "subUpdateCard": "Update Card", "subUpdateTitle": "Update", "subUpdateDescription": "Update the card to be charged." diff --git a/website/public/js/controllers/footerCtrl.js b/website/public/js/controllers/footerCtrl.js index a12225f8e3..4c65545eb3 100644 --- a/website/public/js/controllers/footerCtrl.js +++ b/website/public/js/controllers/footerCtrl.js @@ -85,8 +85,13 @@ function($scope, $rootScope, User, $http, Notification, ApiUrl) { User.log({}); }) } - $scope.addGold = function(){ + $scope.addHourglass = function(){ User.set({ + 'purchased.plan.consecutive.trinkets': User.user.purchased.plan.consecutive.trinkets + 1, + }); + } + $scope.addGold = function(){ + User.set({ 'stats.gp': User.user.stats.gp + 500, }); } diff --git a/website/views/options/inventory/time-travelers.jade b/website/views/options/inventory/time-travelers.jade index 7e7332429a..ebba0b782f 100644 --- a/website/views/options/inventory/time-travelers.jade +++ b/website/views/options/inventory/time-travelers.jade @@ -20,6 +20,7 @@ .row: .col-md-12 li.customize-menu.inventory-gear + p!=env.t('timeTravelersAlreadyOwned', {linkStart: "", linkEnd: ""}) menu.pets-menu(label='{{::set.text}}', ng-repeat='set in Content.timeTravelerStore(user.items.gear.owned)') div(ng-repeat='item in set.items') button.customize-option(class='shop_{{::item.key}}', diff --git a/website/views/shared/footer.jade b/website/views/shared/footer.jade index 2e81898d9c..06bfb26e7c 100644 --- a/website/views/shared/footer.jade +++ b/website/views/shared/footer.jade @@ -80,7 +80,8 @@ footer.footer(ng-controller='FooterCtrl') a.btn.btn-default(ng-click='addMissedDay(1)') +1 Missed Day a.btn.btn-default(ng-click='addMissedDay(2)') +2 Missed Days a.btn.btn-default(ng-click='addTenGems()') +10 Gems - a.btn.btn-default(ng-click='addGold()') +GP + a.btn.btn-default(ng-click='addHourglass()') +1 Mystic Hourglass + a.btn.btn-default(ng-click='addGold()') +500GP a.btn.btn-default(ng-click='addMana()') +MP a.btn.btn-default(ng-click='addLevelsAndGold()') +Exp +GP +MP a.btn.btn-default(ng-click='addOneLevel()') +1 Level