feat(mystery): add 05/2014 mystery item
2
dist/habitrpg-shared.css
vendored
18
dist/habitrpg-shared.js
vendored
|
|
@ -9233,6 +9233,10 @@ mystery = {
|
|||
start: '2014-04-24',
|
||||
end: '2014-05-01'
|
||||
},
|
||||
201405: {
|
||||
start: '2014-05-21',
|
||||
end: '2014-06-01'
|
||||
},
|
||||
wondercon: {
|
||||
start: '2014-03-24',
|
||||
end: '2014-04-01'
|
||||
|
|
@ -9984,6 +9988,12 @@ gear = {
|
|||
notes: t('armorMystery201403Notes'),
|
||||
mystery: mystery['201403'],
|
||||
value: 0
|
||||
},
|
||||
201405: {
|
||||
text: t('armorMystery201405Text'),
|
||||
notes: t('armorMystery201405Notes'),
|
||||
mystery: mystery['201405'],
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10309,6 +10319,12 @@ gear = {
|
|||
notes: t('headMystery201402Notes'),
|
||||
mystery: mystery['201402'],
|
||||
value: 0
|
||||
},
|
||||
201405: {
|
||||
text: t('headMystery201405Text'),
|
||||
notes: t('headMystery201405Notes'),
|
||||
mystery: mystery['201405'],
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -13839,4 +13855,4 @@ api.wrap = function(user, main) {
|
|||
|
||||
|
||||
}).call(this,require("/Users/lefnire/Dropbox/Sites/habitrpg/modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js"))
|
||||
},{"./content.coffee":5,"./i18n.coffee":6,"/Users/lefnire/Dropbox/Sites/habitrpg/modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":2,"lodash":3,"moment":4}]},{},[1])
|
||||
},{"./content.coffee":5,"./i18n.coffee":6,"/Users/lefnire/Dropbox/Sites/habitrpg/modules/habitrpg-shared/node_modules/browserify/node_modules/insert-module-globals/node_modules/process/browser.js":2,"lodash":3,"moment":4}]},{},[1])
|
||||
7684
dist/spritesmith.css
vendored
BIN
dist/spritesmith.png
vendored
|
Before Width: | Height: | Size: 582 KiB After Width: | Height: | Size: 586 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
|
@ -171,6 +171,9 @@
|
|||
"armorMystery201403Text": "Forest Walker Armor",
|
||||
"armorMystery201403Notes": "This mossy armor of woven wood bends with the movement of the wearer.",
|
||||
|
||||
"armorMystery201405Text": "Flame of Heart",
|
||||
"armorMystery201405Notes": "Nothing can hurt you when you are swathed in flames!",
|
||||
|
||||
"headBase0Text": "No Helm",
|
||||
"headBase0Notes": "No headgear.",
|
||||
|
||||
|
|
@ -247,6 +250,9 @@
|
|||
|
||||
"headMystery201402Text": "Winged Helm",
|
||||
"headMystery201402Notes": "This winged circlet imbues the wearer with the speed of the wind!",
|
||||
|
||||
"headMystery201405Text": "Flame of Mind",
|
||||
"headMystery201405Notes": "Burn away the procrastination!",
|
||||
|
||||
"shieldBase0Text": "No Off-Hand Equipment",
|
||||
"shieldBase0Notes": "No shield or second weapon.",
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ mystery =
|
|||
201402: {start:'2014-02-22',end:'2014-02-28'}
|
||||
201403: {start:'2014-03-24',end:'2014-04-01'}
|
||||
201404: {start:'2014-04-24',end:'2014-05-01'}
|
||||
201405: {start:'2014-05-21',end:'2014-06-01'}
|
||||
wondercon: {start:'2014-03-24',end:'2014-04-01'} # not really, but the mechanic works
|
||||
|
||||
gear =
|
||||
|
|
@ -141,6 +142,7 @@ gear =
|
|||
mystery:
|
||||
201402: text: t('armorMystery201402Text'), notes: t('armorMystery201402Notes'), mystery:mystery['201402'], value: 0
|
||||
201403: text: t('armorMystery201403Text'), notes: t('armorMystery201403Notes'), mystery:mystery['201403'], value: 0
|
||||
201405: text: t('armorMystery201405Text'), notes: t('armorMystery201405Notes'), mystery:mystery['201405'], value: 0
|
||||
|
||||
head:
|
||||
base:
|
||||
|
|
@ -190,6 +192,7 @@ gear =
|
|||
springHealer: event: events.spring, specialClass: 'healer', text: t('headSpecialSpringHealerText'), notes: t('headSpecialSpringHealerNotes', {int: 7}), value: 40, int: 7
|
||||
mystery:
|
||||
201402: text: t('headMystery201402Text'), notes: t('headMystery201402Notes'), mystery:mystery['201402'], value: 0
|
||||
201405: text: t('headMystery201405Text'), notes: t('headMystery201405Notes'), mystery:mystery['201405'], value: 0
|
||||
|
||||
shield:
|
||||
base:
|
||||
|
|
|
|||