habitica/views/options/pets.jade

29 lines
1.8 KiB
Text
Raw Normal View History

2013-09-03 08:32:06 +00:00
.stable(ng-controller='PetsCtrl')
.NPC-Matt
.popover.static-popover.fade.right.in(style='max-width: 550px; margin-left: 10px;')
.arrow
h3.popover-title
a(target='_blank', href='http://www.kickstarter.com/profile/mattboch') Matt Boch
2013-09-03 08:32:06 +00:00
.popover-content
p
| Welcome to the Stable! I'm Matt, the beast master. Choose a pet here to adventure at your side - they aren't much help yet, but I forsee a time when they're able to
2013-09-03 08:32:06 +00:00
a(href='https://trello.com/card/mounts/50e5d3684fe3a7266b0036d6/221') grow into powerful steeds
| ! Until that day,
a(target='_blank', href='https://f.cloud.github.com/assets/2374703/164631/3ed5fa6c-78cd-11e2-8743-f65ac477b55e.png') have a look-see
| at all the pets you can collect.
2013-09-18 14:07:23 +00:00
h4 {{userPets.length}} / {{totalPets}} Pets Found
2013-09-03 08:32:06 +00:00
2013-09-29 14:43:01 +00:00
menu.pets(type='list')
li.customize-menu(ng-repeat='pet in pets')
menu
div(ng-repeat='potion in hatchingPotions', tooltip='{{potion.name}} {{pet.name}}')
2013-09-18 15:41:23 +00:00
button(class="pet-button Pet-{{pet.name}}-{{potion.name}}", ng-show='hasPet(pet.name, potion.name)', ng-class="{active: isCurrentPet(pet.name, potion.name)}", ng-click='choosePet(pet.name, potion.name)')
2013-09-03 08:32:06 +00:00
button(class="pet-button pet-not-owned", ng-hide='hasPet(pet.name, potion.name)')
2013-09-18 15:41:23 +00:00
img(src='/bower_components/habitrpg-shared/img/PixelPaw.png')
2013-09-03 08:32:06 +00:00
h4 Rare Pets
2013-09-29 14:43:01 +00:00
menu
2013-10-13 17:40:07 +00:00
div(ng-if='hasPet("Wolf", "Veteran")')
button(class="pet-button Pet-Wolf-Veteran", ng-class='{active: isCurrentPet("Wolf", "Veteran")}', ng-click='choosePet("Wolf", "Veteran")', tooltip='Veteran Wolf')
2013-09-29 14:43:01 +00:00
div(ng-if='hasPet("Wolf", "Cerberus")')
2013-09-05 03:03:20 +00:00
button(class="pet-button Pet-Wolf-Cerberus", ng-class='{active: isCurrentPet("Wolf", "Cerberus")}', ng-click='choosePet("Wolf", "Cerberus")', tooltip='Cerberus Pup')