feat(mystery): july mystery items
2
dist/habitrpg-shared.css
vendored
17
dist/habitrpg-shared.js
vendored
|
|
@ -9249,6 +9249,10 @@ mystery = {
|
|||
start: '2014-06-23',
|
||||
end: '2014-07-01'
|
||||
},
|
||||
201407: {
|
||||
start: '2014-07-23',
|
||||
end: '2014-08-01'
|
||||
},
|
||||
wondercon: {
|
||||
start: '2014-03-24',
|
||||
end: '2014-04-01'
|
||||
|
|
@ -10085,6 +10089,12 @@ gear = {
|
|||
notes: t('armorMystery201406Notes'),
|
||||
mystery: mystery['201406'],
|
||||
value: 0
|
||||
},
|
||||
201407: {
|
||||
text: t('armorMystery201407Text'),
|
||||
notes: t('armorMystery201407Notes'),
|
||||
mystery: mystery['201407'],
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -10460,6 +10470,12 @@ gear = {
|
|||
notes: t('headMystery201406Notes'),
|
||||
mystery: mystery['201406'],
|
||||
value: 0
|
||||
},
|
||||
201407: {
|
||||
text: t('headMystery201407Text'),
|
||||
notes: t('headMystery201407Notes'),
|
||||
mystery: mystery['201407'],
|
||||
value: 0
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -13707,6 +13723,7 @@ api.wrap = function(user, main) {
|
|||
}), 1), 1
|
||||
]);
|
||||
mpDelta = _.max([multiplier, .01 * user._statsComputed.maxMP * multiplier]);
|
||||
mpDelta *= user._tmp.crit || 1;
|
||||
if (direction === 'down') {
|
||||
mpDelta *= -1;
|
||||
}
|
||||
|
|
|
|||
8992
dist/spritesmith.css
vendored
BIN
dist/spritesmith.png
vendored
|
Before Width: | Height: | Size: 728 KiB After Width: | Height: | Size: 733 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 3.1 KiB |
|
After Width: | Height: | Size: 3 KiB |
|
After Width: | Height: | Size: 3.2 KiB |
|
|
@ -198,6 +198,9 @@
|
|||
"armorMystery201406Text": "Octopus Robe",
|
||||
"armorMystery201406Notes": "This flexible robe makes it possible for its wearer to slip through even the tiniest cracks. June 2014 Subscriber Item.",
|
||||
|
||||
"armorMystery201407Text": "Undersea Explorer Suit",
|
||||
"armorMystery201407Notes": "Described alternatively as \"splooshy\", \"overly thick\" and \"frankly, kind of cumbersome\", this suit is the best friend of any intrepid undersea explorer. July 2014 Subscriber Item. Confers no benefit.",
|
||||
|
||||
"headBase0Text": "No Helm",
|
||||
"headBase0Notes": "No headgear.",
|
||||
|
||||
|
|
@ -291,6 +294,8 @@
|
|||
"headMystery201405Notes": "Burn away the procrastination!",
|
||||
"headMystery201406Text": "Crown of Tentacles",
|
||||
"headMystery201406Notes": "The tentacles of this helm gather up magical energy from the water. June 2014 Subscriber Item.",
|
||||
"headMystery201407Text": "Undersea Explorer Helm",
|
||||
"headMystery201407Notes": "This helm makes it easy to explore underwater! It sort of makes you look like a googly-eyed fish, too. Very retro! July 2014 Subscriber Item. Confers no benefit.",
|
||||
|
||||
"shieldBase0Text": "No Off-Hand Equipment",
|
||||
"shieldBase0Notes": "No shield or second weapon.",
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ mystery =
|
|||
201404: {start:'2014-04-24',end:'2014-05-01'}
|
||||
201405: {start:'2014-05-21',end:'2014-06-01'}
|
||||
201406: {start:'2014-06-23',end:'2014-07-01'}
|
||||
201407: {start:'2014-07-23',end:'2014-08-01'}
|
||||
wondercon: {start:'2014-03-24',end:'2014-04-01'} # not really, but the mechanic works
|
||||
|
||||
gear =
|
||||
|
|
@ -159,6 +160,7 @@ gear =
|
|||
201403: text: t('armorMystery201403Text'), notes: t('armorMystery201403Notes'), mystery:mystery['201403'], value: 0
|
||||
201405: text: t('armorMystery201405Text'), notes: t('armorMystery201405Notes'), mystery:mystery['201405'], value: 0
|
||||
201406: text: t('armorMystery201406Text'), notes: t('armorMystery201406Notes'), mystery:mystery['201406'], value: 0
|
||||
201407: text: t('armorMystery201407Text'), notes: t('armorMystery201407Notes'), mystery:mystery['201407'], value: 0
|
||||
|
||||
head:
|
||||
base:
|
||||
|
|
@ -217,6 +219,7 @@ gear =
|
|||
201402: text: t('headMystery201402Text'), notes: t('headMystery201402Notes'), mystery:mystery['201402'], value: 0
|
||||
201405: text: t('headMystery201405Text'), notes: t('headMystery201405Notes'), mystery:mystery['201405'], value: 0
|
||||
201406: text: t('headMystery201406Text'), notes: t('headMystery201406Notes'), mystery:mystery['201406'], value: 0
|
||||
201407: text: t('headMystery201407Text'), notes: t('headMystery201407Notes'), mystery:mystery['201407'], value: 0
|
||||
|
||||
shield:
|
||||
base:
|
||||
|
|
|
|||