2014-02-14 00:57:00 +00:00
|
|
|
//Valentine
|
|
|
|
|
script(id='modals/valentine.html', type='text/ng-template')
|
|
|
|
|
.modal-header
|
|
|
|
|
h4
|
|
|
|
|
.inventory_special_valentine.pull-right
|
|
|
|
|
=env.t('valentineCard')
|
|
|
|
|
.modal-body
|
|
|
|
|
.bg-info(style='padding:10px')
|
|
|
|
|
p To: {{user.profile.name}}, From: {{user.items.special.valentineReceived[0]}}
|
|
|
|
|
hr
|
|
|
|
|
div(ng-switch='Math.floor(Math.random()*3)')
|
|
|
|
|
ul.list-unstyled(ng-switch-when='0')
|
|
|
|
|
li "Roses are red
|
|
|
|
|
li My Dailies are blue
|
|
|
|
|
li I'm happy that I'm
|
|
|
|
|
li In a Party with you!"
|
|
|
|
|
ul.list-unstyled(ng-switch-when='1')
|
|
|
|
|
li "Roses are red
|
|
|
|
|
li Violets are nice
|
|
|
|
|
li Let's get together
|
|
|
|
|
li And fight against Vice!"
|
|
|
|
|
ul.list-unstyled(ng-switch-default)
|
|
|
|
|
li "Roses are red
|
|
|
|
|
li This poem style is old
|
|
|
|
|
li I hope that you like this
|
|
|
|
|
li Cuz it cost ten gold."
|
|
|
|
|
p
|
|
|
|
|
small For enduring such a saccharine poem, you both receive the "Adoring Friends" badge!
|
|
|
|
|
.modal-footer
|
2014-12-30 02:58:28 +00:00
|
|
|
button.btn.btn-default(ng-click='user.ops.readValentine({});$close()')=env.t('ok')
|
|
|
|
|
|
|
|
|
|
// New Year's
|
|
|
|
|
script(id='modals/nye.html', type='text/ng-template')
|
|
|
|
|
.modal-header
|
|
|
|
|
h4
|
|
|
|
|
.inventory_special_nye.pull-right
|
|
|
|
|
=env.t('nyeCard')
|
|
|
|
|
.modal-body
|
|
|
|
|
.bg-info(style='padding:10px')
|
|
|
|
|
p To: {{user.profile.name}}, From: {{user.items.special.nyeReceived[0]}}
|
|
|
|
|
hr
|
|
|
|
|
div(ng-switch='Math.floor(Math.random()*5)')
|
|
|
|
|
p(ng-switch-when='0') Happy New Year! May you slay many a bad Habit.
|
|
|
|
|
p(ng-switch-when='1') Happy New Year! May you reap many Rewards.
|
|
|
|
|
p(ng-switch-when='2') Happy New Year! May you earn many a Perfect Day.
|
|
|
|
|
p(ng-switch-when='3') Happy New Year! May your To-Do list stay short and sweet.
|
|
|
|
|
p(ng-switch-default) Happy New Year! May you not get attacked by a raging Hippogriff.
|
|
|
|
|
p
|
|
|
|
|
small For celebrating the new year together, you both receive the "Auld Acquaintance" badge!
|
|
|
|
|
.modal-footer
|
|
|
|
|
button.btn.btn-default(ng-click='user.ops.readNYE({});$close()')=env.t('ok')
|