2017-09-30 15:48:24 +00:00
< template lang = 'pug' >
div
. media
. align - self - center . right - margin ( : class = 'baileyClass' )
. media - body
h1 . align - self - center ( v - markdown = '$t("newStuff")' )
2018-01-04 21:35:26 +00:00
h2 1 / 4 / 2018 - WINTERY AVATAR CUSTOMIZATIONS AND NEW AUDIO THEMES
2017-09-30 15:48:24 +00:00
hr
2017-12-15 05:34:30 +00:00
. media
. media - body
2018-01-04 21:35:26 +00:00
h3 Wintery Skins and Hair Colors !
p The Seasonal Edition Wintery Hair Colors are now available for purchase via the User Menu under "Edit Avatar" ! Now you can dye your avatar ' s hair Snowy , Peppermint , Holly Green , Aurora , Winter Star , or Festive .
p Plus , the Seasonal Edition Wintery Skins are available , too ! You can complete your winter avatar look with Aurora , Dapper , Festive , Holly , Polar , Sugar , or Winter Star Skins .
p Both of these Seasonal Edition customization sets will only be available to purchase until January 31 st , after which they ' ll be gone until next year , so be sure to swoop them up now !
. small by Lemoness and tricksy . fox
h3 New Audio Themes !
p ( v - markdown = '"There are two new audio themes available in [site settings](/user/settings/site): Pizilden\'s Theme and the MAFL Theme! Check them out to bring fresh sounds to your Habitica experience."' )
. small by Pizilden and MAFL
. promo _winter _customizations . left - margin
2017-09-30 15:48:24 +00:00
< / template >
< style lang = 'scss' scoped >
@ import '~client/assets/scss/static.scss' ;
. center - block {
2017-10-03 01:32:13 +00:00
margin : 0 auto 1 em auto ;
2017-09-30 15:48:24 +00:00
}
2017-10-06 00:00:39 +00:00
. left - margin {
margin - left : 1 em ;
}
2017-10-03 01:32:13 +00:00
. right - margin {
margin - right : 1 em ;
2017-09-30 15:48:24 +00:00
}
2017-12-20 02:23:11 +00:00
. bottom - margin {
margin - bottom : 1 em ;
}
2017-10-24 20:21:30 +00:00
. small {
2017-10-03 01:32:13 +00:00
margin - bottom : 1 em ;
2017-10-24 20:21:30 +00:00
}
2017-09-30 15:48:24 +00:00
< / style >
< script >
import markdown from 'client/directives/markdown' ;
export default {
data ( ) {
let worldDmg = {
bailey : false ,
} ;
return {
baileyClass : {
'npc_bailey_broken' : worldDmg . bailey , // eslint-disable-line
'npc_bailey' : ! worldDmg . bailey , // eslint-disable-line
} ,
} ;
} ,
directives : {
markdown ,
} ,
} ;
< / script >