2013-09-04 15:13:42 +00:00
.row-fluid(ng-controller='InventoryCtrl')
2013-10-20 02:36:59 +00:00
.span6.border-right
h2 Inventory
2013-10-20 06:44:03 +00:00
p.well Combine eggs with hatching potions to make pets by clicking an egg and then a potion. Sell unwanted drops to Alexander the Merchant.
2013-09-02 18:26:59 +00:00
menu.inventory-list(type='list')
li.customize-menu
2013-09-24 01:02:08 +00:00
menu.pets-menu(label='Eggs ({{userEggs.length}})')
2013-09-04 15:13:42 +00:00
p(ng-show='userEggs.length < 1') You don't have any eggs yet.
div(ng-repeat='egg in userEggs track by $index')
2013-10-20 06:44:03 +00:00
button.customize-option(tooltip='{{egg.text}}', ng-click='chooseEgg(egg, $index)', class='Pet_Egg_{{egg.name}}', ng-class='selectableInventory(egg, selectedPotion.name, $index)')
2013-09-02 18:26:59 +00:00
p {{egg.text}}
li.customize-menu
2013-09-24 01:02:08 +00:00
menu.hatchingPotion-menu(label='Hatching Potions ({{userHatchingPotions.length}})')
2013-09-04 15:13:42 +00:00
p(ng-show='userHatchingPotions.length < 1') You don't have any hatching potions yet.
div(ng-repeat='hatchingPotion in userHatchingPotions track by $index')
2013-10-20 06:44:03 +00:00
button.customize-option(tooltip='{{hatchingPotion}}', ng-click='choosePotion(hatchingPotion, $index)', class='Pet_HatchingPotion_{{hatchingPotion}}', ng-class='selectableInventory(selectedEgg, hatchingPotion, $index)')
2013-09-02 18:26:59 +00:00
p {{hatchingPotion}}
2013-10-20 02:36:59 +00:00
.span6
h2 Market
.row-fluid(ng-controller='MarketCtrl')
table.NPC-Alex-container
tr
2013-10-20 02:58:11 +00:00
td
2013-10-20 06:44:03 +00:00
.NPC-Alex.pull-left
2013-10-20 02:36:59 +00:00
td
.popover.static-popover.fade.right.in
.arrow
h3.popover-title
2013-10-20 06:44:03 +00:00
a(target='_blank', href='http://www.kickstarter.com/profile/523661924') Alexander the Merchant
2013-10-20 02:36:59 +00:00
.popover-content
2013-10-20 06:44:03 +00:00
p
| Welcome to the Market. Dying to get that particular pet you're after, but don't want to wait for it to drop? Buy it here! If you have unwanted drops, sell them to me.
p
button.btn.btn-primary(ng-show='selectedEgg', ng-click='sellInventory()')
| Sell {{selectedEgg.name}} for {{selectedEgg.value}} GP
button.btn.btn-primary(ng-show='selectedPotion', ng-click='sellInventory()')
| Sell {{selectedPotion.name}} for {{selectedPotion.value}} GP
2013-10-20 02:36:59 +00:00
menu.inventory-list(type='list')
li.customize-menu
menu.pets-menu(label='Eggs')
div(ng-repeat='egg in eggs track by $index')
button.customize-option(tooltip='{{egg.text}} - {{egg.value}} Gem(s)', ng-click='buy("egg", egg)', class='Pet_Egg_{{egg.name}}')
p {{egg.text}}
li.customize-menu
menu.pets-menu(label='Hatching Potions')
div(ng-repeat='hatchingPotion in hatchingPotions track by $index')
button.customize-option(tooltip='{{hatchingPotion.text}} - {{hatchingPotion.value}} Gem(s)', ng-click='buy("hatchingPotion", hatchingPotion)', class='Pet_HatchingPotion_{{hatchingPotion.name}}')
p {{hatchingPotion.text}}