2013-10-28 05:27:07 +00:00
script(type='text/ng-template', id='partials/options.inventory.inventory.html')
2013-11-10 04:15:55 +00:00
.row-fluid
2013-10-28 05:27:07 +00:00
.span6.border-right
h2 Inventory
2013-11-08 18:53:28 +00:00
p.well Click an egg to see usable potions highlighted in green and then click one of the highlighted potions to hatch your pet. If no potions are highlighted, click that egg again to deselect it, and instead click a potion first to have the usable eggs highlighted. You can also sell unwanted drops to Alexander the Merchant.
2013-10-28 05:27:07 +00:00
menu.inventory-list(type='list')
2013-11-10 04:15:55 +00:00
2013-11-30 21:55:39 +00:00
li.customize-menu
menu.pets-menu(label='Gear')
2013-12-05 05:50:20 +00:00
div(ng-repeat='(k,v) in user.items.gear.owned', ng-init='item = Items.gear.flat[k]')
button.customize-option(popover='{{item.notes}}', popover-title='{{item.text}}', popover-trigger='mouseenter', popover-placement='right', ng-click='equip(user,item)', class='shop_{{item.key}}')
label.checkbox.inline
input(type="checkbox", ng-model="user.preferences.costume")
| Use Custume
i.icon-question-sign(popover="Show something different on your avatar than the gear you have equipped for battle", popover-trigger='mouseenter', popover-placement='right')
li.customize-menu(ng-if='user.preferences.costume')
menu.pets-menu(label='Gear')
div(ng-repeat='(k,v) in user.items.gear.owned', ng-init='item = Items.gear.flat[k]')
button.customize-option(popover='{{item.notes}}', popover-title='{{item.text}}', popover-trigger='mouseenter', popover-placement='right', ng-click='equip(user,item,true)', class='shop_{{item.key}}')
2013-11-30 21:55:39 +00:00
2013-11-10 04:15:55 +00:00
li.customize-menu
menu.pets-menu(label='Eggs ({{eggCount}})')
2013-11-24 14:53:48 +00:00
p(ng-show='eggCount < 1') You don't have any eggs.
2013-11-10 04:15:55 +00:00
div(ng-repeat='(egg,points) in ownedItems(user.items.eggs)')
//TODO move positioning this styling to css
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{Items.eggs[egg].notes}}', popover-title='{{Items.eggs[egg].text}} Egg', popover-trigger='mouseenter', popover-placement='right', ng-click='chooseEgg(egg)', class='Pet_Egg_{{egg}}', ng-class='{selectableInventory: selectedPotion && !user.items.pets[egg+"-"+selectedPotion.name]}')
2013-11-10 04:15:55 +00:00
.badge.badge-info.stack-count {{points}}
2013-11-11 04:03:54 +00:00
//-p {{Items.eggs[egg].text}}
2013-11-10 04:15:55 +00:00
2013-10-28 05:27:07 +00:00
li.customize-menu
2013-11-10 04:15:55 +00:00
menu.hatchingPotion-menu(label='Hatching Potions ({{potCount}})')
2013-11-24 14:53:48 +00:00
p(ng-show='potCount < 1') You don't have any hatching potions.
2013-11-10 04:15:55 +00:00
div(ng-repeat='(pot,points) in ownedItems(user.items.hatchingPotions)')
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{Items.hatchingPotions[pot].notes}}', popover-title='{{Items.hatchingPotions[pot].text}} Potion', popover-trigger='mouseenter', popover-placement='right', ng-click='choosePotion(pot)', class='Pet_HatchingPotion_{{pot}}', ng-class='{selectableInventory: selectedEgg && !user.items.pets[selectedEgg.name+"-"+pot]}')
2013-11-10 04:15:55 +00:00
.badge.badge-info.stack-count {{points}}
2013-11-11 04:03:54 +00:00
//-p {{pot}}
2013-11-10 04:15:55 +00:00
2013-11-14 20:59:00 +00:00
//-li.customize-menu
2013-11-11 03:18:06 +00:00
menu.pets-menu(label='Food ({{foodCount}})')
2013-11-24 14:53:48 +00:00
p(ng-show='foodCount < 1') You don't have any food.
2013-11-10 04:15:55 +00:00
div(ng-repeat='(food,points) in ownedItems(user.items.food)')
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{Items.food[food].notes}}', popover-title='{{Items.food[food].text}}', popover-trigger='mouseenter', popover-placement='right', ng-click='chooseFood(food)', class='Pet_Food_{{food}}')
2013-11-10 04:15:55 +00:00
.badge.badge-info.stack-count {{points}}
2013-11-11 04:03:54 +00:00
//-p {{food}}
2013-10-28 05:27:07 +00:00
.span6
h2 Market
2013-11-10 04:15:55 +00:00
.row-fluid
2013-12-04 23:52:06 +00:00
table.npc_alex_container
2013-10-28 05:27:07 +00:00
tr
td
2013-12-04 23:52:06 +00:00
.npc_alex.pull-left
2013-10-28 05:27:07 +00:00
td
.popover.static-popover.fade.right.in
.arrow
h3.popover-title
a(target='_blank', href='http://www.kickstarter.com/profile/523661924') Alexander the Merchant
.popover-content
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()')
2013-11-17 15:36:38 +00:00
| Sell {{selectedEgg.name}} for {{selectedEgg.value}} Gold
2013-10-28 05:27:07 +00:00
button.btn.btn-primary(ng-show='selectedPotion', ng-click='sellInventory()')
2013-11-17 15:36:38 +00:00
| Sell {{selectedPotion.name}} for {{selectedPotion.value}} Gold
2013-11-10 04:15:55 +00:00
button.btn.btn-primary(ng-show='selectedFood', ng-click='sellInventory()')
2013-11-17 15:36:38 +00:00
| Sell {{selectedFood.name}} for {{selectedFood.value}} Gold
2013-10-28 05:27:07 +00:00
menu.inventory-list(type='list')
li.customize-menu
menu.pets-menu(label='Eggs')
2013-11-10 04:15:55 +00:00
div(ng-repeat='egg in Items.eggs')
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{egg.notes}}', popover-title='{{egg.text}} Egg', popover-trigger='mouseenter', popover-placement='left', ng-click='buy("egg", egg)', class='Pet_Egg_{{egg.name}}')
p
| {{egg.value}}
span.Pet_Currency_Gem1x.inline-gems
2013-10-28 05:27:07 +00:00
li.customize-menu
menu.pets-menu(label='Hatching Potions')
2013-11-10 04:15:55 +00:00
div(ng-repeat='pot in Items.hatchingPotions')
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{pot.notes}}', popover-title='{{pot.text}} Potion', popover-trigger='mouseenter', popover-placement='left', ng-click='buy("hatchingPotion", pot)', class='Pet_HatchingPotion_{{pot.name}}')
p
| {{pot.value}}
span.Pet_Currency_Gem1x.inline-gems
2013-11-10 04:15:55 +00:00
2013-11-14 20:59:00 +00:00
//-li.customize-menu
2013-11-10 04:15:55 +00:00
menu.pets-menu(label='Food')
div(ng-repeat='food in Items.food')
2013-11-11 04:03:54 +00:00
button.customize-option(popover='{{food.notes}}', popover-title='{{food.text}}', popover-trigger='mouseenter', popover-placement='left', ng-click='buy("food", food)', class='Pet_Food_{{food.name}}')
p
| {{food.value}}
span.Pet_Currency_Gem1x.inline-gems
2013-10-28 05:27:07 +00:00