2013-10-28 05:27:07 +00:00
script(id='partials/options.profile.avatar.html', type='text/ng-template')
.row-fluid
2013-10-29 00:31:27 +00:00
.span4
2013-12-14 07:35:03 +00:00
h3 Body
small.
2 <span class="Pet_Currency_Gem1x inline-gems"/> / locked
h5 Size
.btn-group
button.btn.btn-small(ng-class='{active: user.preferences.size=="slim"}', ng-click='set({"preferences.size":"slim"})') Slim
button.btn.btn-small(ng-class='{active: user.preferences.size=="broad"}', ng-click='set({"preferences.size":"broad"})') Broad
2013-10-28 05:27:07 +00:00
menu(type='list')
li.customize-menu
2013-12-14 07:35:03 +00:00
menu(label='Shirts')
each shirt in ['black', 'blue', 'green', 'pink', 'white', 'yellow']
button.customize-option(class='{{user.preferences.size}}_shirt_'+shirt, type='button', ng-click='set({"preferences.shirt":"'+shirt+'"})')
menu(label='Special Shirts')
each shirt in ['convict', 'cross', 'fire', 'horizon', 'ocean', 'purple', 'rainbow', 'redblue', 'thunder', 'tropical', 'zombie']
button.customize-option(type='button', class='{{user.preferences.size}}_shirt_'+shirt, ng-class='{locked: !user.purchased.shirt.'+shirt+'}', ng-click='unlock("shirt.'+shirt+'")')
2013-10-28 05:27:07 +00:00
menu
2013-12-14 07:35:03 +00:00
button.btn.btn-small.btn-primary(ng-hide="user.purchased.shirt.convict && user.purchased.shirt.cross && user.purchased.shirt.fire && user.purchased.shirt.horizon && user.purchased.shirt.ocean && user.purchased.shirt.purple && user.purchased.shirt.rainbow && user.purchased.shirt.redblue && user.purchased.shirt.thunder && user.purchased.shirt.tropical && user.purchased.shirt.zombie", ng-click='unlock("shirt.convict,shirt.cross,shirt.fire,shirt.horizon,shirt.ocean,shirt.purple,shirt.rainbow,shirt.redblue,shirt.thunder,shirt.tropical,shirt.zombie")') Unlock Set - 5 <span class="Pet_Currency_Gem1x inline-gems"/>
2013-10-22 19:19:43 +00:00
2013-10-29 00:31:27 +00:00
.span4
2013-12-16 20:46:54 +00:00
h3 Head
2013-12-14 05:39:15 +00:00
small.
2 <span class="Pet_Currency_Gem1x inline-gems"/> / locked
2013-11-16 10:22:12 +00:00
menu(type='list')
// Color
li.customize-menu
menu(label='Color')
2014-01-14 04:29:55 +00:00
each v,k in {'c8c8c8':'white','903a00':'brown','cfb853':'blond','ec720f':'red','2e2e2e':'black'}
button(type='button', class='customize-option', style='width: 40px; height: 40px; background-color:##{k};', ng-click='set({"preferences.hair.color": "#{v}"})')
2013-12-20 18:03:43 +00:00
// Special Events
li.customize-menu.well.limited-edition
2013-12-21 01:52:32 +00:00
.label.label-info.pull-right(popover='Available for purchase until January 31st (but permanently in your options if purchased).', popover-title='Limited Edition', popover-placement='right', popover-trigger='mouseenter')
2013-12-20 18:03:43 +00:00
| Limited Edition
i.icon.icon-question-sign
2013-12-20 17:25:23 +00:00
menu(label='Winter Colors')
2013-12-20 18:03:43 +00:00
each color in ['candycane','frost','winternight','holly']
2014-01-14 04:29:55 +00:00
button(type='button', ng-class='{locked: !user.purchased.hair.color.#{color}}', class='customize-option hair_bangs_1_#{color}', style='width: 40px; height: 40px;', ng-click='unlock("hair.color.#{color}")')
2013-12-20 17:25:23 +00:00
button.btn.btn-small.btn-primary(ng-hide='user.purchased.hair.color.candycane && user.purchased.hair.color.frost && user.purchased.hair.color.winternight && user.purchased.hair.color.holly', ng-click='unlock("hair.color.candycane,hair.color.frost,hair.color.winternight,hair.color.holly")') Unlock Set - 5<span class="Pet_Currency_Gem1x inline-gems"/>
2013-12-16 20:46:54 +00:00
h5 Hair
2013-11-16 10:22:12 +00:00
// Bangs
li.customize-menu
menu(label='Bangs')
2014-01-14 04:29:55 +00:00
button(class='head_0 customize-option', type='button', ng-click='set({"preferences.hair.bangs":0})')
each num in [1,2,3]
button(class='hair_bangs_#{num}_{{user.preferences.hair.color}} customize-option', type='button', ng-click='set({"preferences.hair.bangs":#{num}})')
2013-11-16 10:22:12 +00:00
2013-12-16 20:46:54 +00:00
// Base
li.customize-menu
menu(label='Base')
2013-12-20 17:25:23 +00:00
button(class='head_0 customize-option', type='button', ng-click='set({"preferences.hair.base":0})')
2014-01-14 04:29:55 +00:00
each v,k in {1:true,2:false,3:true,4:false,5:false,6:false,7:false,8:false}
case v
when true: button(class='hair_base_#{k}_{{user.preferences.hair.color}} customize-option', type='button', ng-click='set({"preferences.hair.base":#{k}})')
when false: button(class='hair_base_#{k}_{{user.preferences.hair.color}} customize-option', type='button', ng-class='{locked: !user.purchased.hair.base.#{k}}', ng-click='unlock("hair.base.#{k}")')
2013-12-16 20:46:54 +00:00
button.btn.btn-small.btn-primary(ng-hide='user.purchased.hair.base.2 && user.purchased.hair.base.4 && user.purchased.hair.base.5 && user.purchased.hair.base.6 && user.purchased.hair.base.7 && user.purchased.hair.base.8', ng-click='unlock("hair.base.2,hair.base.4,hair.base.5,hair.base.6,hair.base.7,hair.base.8")') Unlock Set - 5<span class="Pet_Currency_Gem1x inline-gems"/>
h5 Facial Hair
2013-12-05 10:31:02 +00:00
// Beard
li.customize-menu
menu(label='Beard')
2014-01-14 04:29:55 +00:00
button(class='head_0 customize-option', type='button', ng-click='set({"preferences.hair.beard":0})')
each num in [1,2,3]
button(class='hair_beard_#{num}_{{user.preferences.hair.color}} customize-option', type='button', ng-class='{locked: !user.purchased.hair.beard.#{num}}', ng-click='unlock("hair.beard.#{num}")')
2013-12-05 10:31:02 +00:00
// Mustache
li.customize-menu
menu(label='Mustache')
2013-12-20 17:25:23 +00:00
button(class='head_0 customize-option', type='button', ng-click='set({"preferences.hair.mustache":0})')
2014-01-14 04:29:55 +00:00
each num in [1,2]
button(class='hair_mustache_#{num}_{{user.preferences.hair.color}} customize-option', type='button', ng-class='{locked: !user.purchased.hair.mustache.#{num}}', ng-click='unlock("hair.mustache.#{num}")')
2013-12-05 10:31:02 +00:00
2013-12-16 20:46:54 +00:00
button.btn.btn-small.btn-primary(ng-hide='user.purchased.hair.mustache.1 && user.purchased.hair.mustache.2 && user.purchased.hair.beard.1 && user.purchased.hair.beard.2 && user.purchased.hair.beard.3', ng-click='unlock("hair.mustache.1,hair.mustache.2,hair.beard.1,hair.beard.2,hair.beard.3")') Unlock Set - 5<span class="Pet_Currency_Gem1x inline-gems"/>
2013-10-22 19:19:43 +00:00
2013-10-29 00:31:27 +00:00
.span4
2013-12-14 05:39:15 +00:00
h3 Skin
small.
2 <span class="Pet_Currency_Gem1x inline-gems"/> / locked
2013-10-28 05:27:07 +00:00
// skin
li.customize-menu
menu(label='Basic Skins')
2014-01-14 04:29:55 +00:00
each color in ['ddc994','f5a76e','ea8349','c06534','98461a','915533','c3e1dc','6bd049']
button.customize-option(type='button', class='skin_#{color}', ng-click='set({"preferences.skin":"#{color}"})')
2013-10-22 19:19:43 +00:00
2013-10-28 05:27:07 +00:00
// Rainbow Skin
2013-10-23 02:22:32 +00:00
h5.
2013-12-14 05:39:15 +00:00
Rainbow Skins
2013-10-28 05:27:07 +00:00
//menu(label='Rainbow Skins (2G / skin)')
2013-10-23 02:22:32 +00:00
menu
2014-01-14 04:29:55 +00:00
each color in ['eb052b','f69922','f5d70f','0ff591','2b43f6','d7a9f7','800ed0','rainbow']
button.customize-option(type='button', class='skin_#{color}', ng-class='{locked: !user.purchased.skin.#{color}}', ng-click='unlock("skin.#{color}")')
2013-12-11 16:30:39 +00:00
button.btn.btn-small.btn-primary(ng-hide='user.purchased.skin.eb052b && user.purchased.skin.f69922 && user.purchased.skin.f5d70f && user.purchased.skin.0ff591 && user.purchased.skin.2b43f6 && user.purchased.skin.d7a9f7 && user.purchased.skin.800ed0 && user.purchased.skin.rainbow', ng-click='unlock("skin.eb052b,skin.f69922,skin.f5d70f,skin.0ff591,skin.2b43f6,skin.d7a9f7,skin.800ed0,skin.rainbow")') Unlock Set - 5<span class="Pet_Currency_Gem1x inline-gems"/>
2013-10-23 00:54:17 +00:00
2013-10-28 05:27:07 +00:00
// Special Events
2013-11-11 16:21:29 +00:00
// restore to d4df481 to see purchasing + "limited edition" code
div(ng-if='user.purchased.skin.monster || user.purchased.skin.pumpkin || user.purchased.skin.skeleton || user.purchased.skin.zombie || user.purchased.skin.ghost || user.purchased.skin.shadow')
h5 Spooky Skins
2013-10-28 05:27:07 +00:00
menu
2014-01-14 04:29:55 +00:00
each color in ['monster','pumpkin','skeleton','zombie','ghost','shadow']
button.customize-option(type='button', class='skin_#{color}', ng-if='user.purchased.skin.#{color}', ng-click='unlock("skin.#{color}")')
2013-10-22 19:19:43 +00:00
2013-10-28 05:27:07 +00:00
script(id='partials/options.profile.stats.html', type='text/ng-template')
.row-fluid
2013-12-17 23:44:46 +00:00
.border-right(ng-class='user.flags.classSelected && !user.preferences.disableClasses ? "span4" : "span6"')
2013-10-28 05:27:07 +00:00
include ../shared/profiles/stats
2013-12-17 23:44:46 +00:00
.span4.border-right.allocate-stats(ng-if='user.flags.classSelected && !user.preferences.disableClasses')
2013-12-29 17:04:31 +00:00
h3 Character Build
h4 Class:
2013-12-29 19:18:29 +00:00
span {{ {warrior:'Warrior',wizard:'Mage',healer:'Healer',rogue:'Rogue'}[user.stats.class] }}
2013-12-16 18:47:55 +00:00
a.btn.btn-danger.btn-mini(ng-click='changeClass(null)')
2013-12-27 15:54:48 +00:00
| Change Class, Refund Attribute Points
2013-12-16 18:47:55 +00:00
small 3 <span class="Pet_Currency_Gem1x inline-gems"/>
2014-01-08 04:56:18 +00:00
h5(popover-trigger='mouseenter', popover-placement='left', popover="Each level earns you one point to assign to an attribute of your choice. You can do so manually, or let the game decide for you using one of the Automatic Allocation options.") Unallocated Attribute Points: {{user.stats.points}}
2013-12-16 20:33:05 +00:00
fieldset.auto-allocate
2013-11-16 10:22:12 +00:00
label.checkbox
2014-01-07 03:20:54 +00:00
input(type='checkbox', ng-model='user.preferences.automaticAllocation', ng-change='set({"preferences.automaticAllocation": user.preferences.automaticAllocation?true: false})', ng-click='set({"preferences.allocationMode":"taskbased"})')
2013-12-27 15:54:48 +00:00
| Automatic Allocation
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover="Places points into attributes according to your preferences, when you level up.")
2014-01-15 03:07:46 +00:00
form(ng-show='user.preferences.automaticAllocation',style='margin-left:1em')
label.radio
input(type='radio', name='allocationMode', value='flat', ng-model='user.preferences.allocationMode', ng-change='set({"preferences.allocationMode": "flat"})')
| Distribute attribute points evenly
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover="Assigns the same number of points to each attribute.")
label.radio
input(type='radio', name='allocationMode', value='classbased', ng-model='user.preferences.allocationMode', ng-change='set({"preferences.allocationMode": "classbased"})')
| Distribute attribute points based on Class
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover="Assigns more points to the attributes important to your Class.")
label.radio
input(type='radio', name='allocationMode', value='taskbased', ng-model='user.preferences.allocationMode', ng-change='set({"preferences.allocationMode": "taskbased"})')
| Distribute attribute points based on task activity
i.icon-question-sign(popover-trigger='mouseenter', popover-placement='right', popover="Assigns points based on the Physical (STR), Mental (INT), Social (CON), and Other (PER) categories associated with the tasks you complete.")
2013-11-16 10:22:12 +00:00
table.table.table-striped
tr
2014-01-08 04:56:18 +00:00
td Points allocated to STR: {{user.stats.str}}
2013-11-16 10:22:12 +00:00
td
2014-01-08 04:56:18 +00:00
a.btn.btn-primary(ng-show='user.stats.points', ng-click='allocate("str")', popover-trigger='mouseenter', popover-placement='right', popover="Add a point to Strength") +
2013-11-16 10:22:12 +00:00
tr
2014-01-08 04:56:18 +00:00
td Points allocated to CON: {{user.stats.con}}
2013-11-16 10:22:12 +00:00
td
2014-01-08 04:56:18 +00:00
a.btn.btn-primary(ng-show='user.stats.points', ng-click='allocate("con")', popover-trigger='mouseenter', popover-placement='right', popover="Add a point to Constitution") +
2013-11-16 10:22:12 +00:00
tr
2014-01-08 04:56:18 +00:00
td Points allocated to PER: {{user.stats.per}}
2013-11-16 10:22:12 +00:00
td
2014-01-08 04:56:18 +00:00
a.btn.btn-primary(ng-show='user.stats.points', ng-click='allocate("per")', popover-trigger='mouseenter', popover-placement='right', popover="Add a point to Perception") +
2013-11-16 10:22:12 +00:00
tr
2014-01-08 04:56:18 +00:00
td Points allocated to INT: {{user.stats.int}}
2013-11-16 10:22:12 +00:00
td
2014-01-08 04:56:18 +00:00
a.btn.btn-primary(ng-show='user.stats.points', ng-click='allocate("int")', popover-trigger='mouseenter', popover-placement='right', popover="Add a point to Intelligence") +
2013-12-17 23:44:46 +00:00
div(ng-class='user.flags.classSelected && !user.preferences.disableClasses ? "span4" : "span6"')
2013-10-28 05:27:07 +00:00
include ../shared/profiles/achievements
script(id='partials/options.profile.profile.html', type='text/ng-template')
button.btn.btn-default(ng-click='_editing.profile = true', ng-show='!_editing.profile') Edit
button.btn.btn-primary(ng-click='save()', ng-show='_editing.profile') Save
div(ng-show='!_editing.profile')
h4 Display Name
span(ng-show='profile.profile.name') {{profile.profile.name}}
span.muted(ng-hide='profile.profile.name') - None -
2013-08-28 01:54:11 +00:00
2013-10-28 05:27:07 +00:00
h4 Photo
img(ng-show='profile.profile.imageUrl', ng-src='{{profile.profile.imageUrl}}')
span.muted(ng-hide='profile.profile.imageUrl') - None -
2013-08-28 01:54:11 +00:00
2013-10-28 05:27:07 +00:00
h4 Blurb
markdown(ng-show='profile.profile.blurb', ng-model='profile.profile.blurb')
span.muted(ng-hide='profile.profile.blurb') - None -
//{{profile.profile.blurb | linky:'_blank'}}
2013-09-09 17:27:25 +00:00
2013-10-28 05:27:07 +00:00
div.whatever-options(ng-show='_editing.profile')
// TODO use photo-upload instead: https://groups.google.com/forum/?fromgroups=#!topic/derbyjs/xMmADvxBOak
.control-group.option-large
label.control-label Display Name
input.option-content(type='text', placeholder='Full Name', ng-model='editingProfile.name')
.control-group.option-large
label.control-label Photo Url
input.option-content(type='url', ng-model='editingProfile.imageUrl', placeholder='Image Url')
.control-group.option-large
label.control-label Blurb
textarea.option-content(style='height:15em;', placeholder='Blurb', ng-model='editingProfile.blurb')
include ../shared/formatting-help
2013-09-09 17:27:25 +00:00
2013-10-28 05:27:07 +00:00
script(id='partials/options.profile.html', type="text/ng-template")
ul.nav.nav-tabs
li(ng-class="{ active: $state.includes('options.profile.avatar') }")
a(ui-sref='options.profile.avatar')
| Avatar
li(ng-class="{ active: $state.includes('options.profile.stats') }")
a(ui-sref='options.profile.stats')
| Stats & Achievements
li(ng-class="{ active: $state.includes('options.profile.profile') }")
a(ui-sref='options.profile.profile')
| Profile
2013-09-09 17:27:25 +00:00
2013-10-28 05:27:07 +00:00
.tab-content
.tab-pane.active
2013-11-12 06:31:08 +00:00
div(ui-view)