feat(content): reenable some May potions

This commit is contained in:
Sabe Jones
2020-05-12 15:57:40 -05:00
parent 6658abbcd9
commit 8747a2d1b6
6 changed files with 33 additions and 11 deletions

View File

@@ -4,9 +4,15 @@
width: 423px;
height: 147px;
}
.promo_mystery_202005 {
.promo_fairy_sunshine_potions {
background-image: url('~@/assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: 0px -223px;
width: 423px;
height: 147px;
}
.promo_mystery_202005 {
background-image: url('~@/assets/images/sprites/spritesmith-largeSprites-0.png');
background-position: -424px -223px;
width: 282px;
height: 147px;
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -164,6 +164,7 @@
"augustYYYY": "August <%= year %>",
"decemberYYYY": "December <%= year %>",
"marchYYYY": "March <%= year %>",
"mayYYYY": "May <%= year %>",
"dateEndJuly": "July 31",
"dateEndAugust": "August 31",
"dateEndSeptember": "September 21",

View File

@@ -86,6 +86,13 @@ const premium = {
value: 2,
text: t('hatchingPotionFairy'),
limited: true,
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMay'),
previousDate: t('mayYYYY', { year: 2017 }),
}),
canBuy () {
return moment().isBefore('2020-06-02');
},
},
Floral: {
value: 2,
@@ -222,6 +229,13 @@ const premium = {
value: 2,
text: t('hatchingPotionSunshine'),
limited: true,
_addlNotes: t('eventAvailabilityReturning', {
availableDate: t('dateEndMay'),
previousDate: t('mayYYYY', { year: 2019 }),
}),
canBuy () {
return moment().isBefore('2020-06-02');
},
},
Bronze: {
value: 2,

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -4,7 +4,7 @@ const api = {};
// @TODO export this const, cannot export it from here because only routes are exported from
// controllers
const LAST_ANNOUNCEMENT_TITLE = 'MAY BACKGROUNDS AND ARMOIRE ITEMS!';
const LAST_ANNOUNCEMENT_TITLE = 'FAIRY AND SUNSHINE GLOW HATCHING POTIONS!';
const worldDmg = { // @TODO
bailey: false,
};
@@ -31,22 +31,23 @@ api.getNews = {
<div class="mr-3 ${baileyClass}"></div>
<div class="media-body">
<h1 class="align-self-center">${res.t('newStuff')}</h1>
<h2>5/5/2020 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
<h2>5/12/2020 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
</div>
</div>
<hr/>
<div class="promo_armoire_backgrounds_202005 center-block"></div>
<div class="promo_fairy_sunshine_potions center-block"></div>
<p>
Weve added three new backgrounds to the Background Shop! Now your avatar can soar in a
Hot Air Balloon, pick fresh treats in a Strawberry Patch, and caper on Habit City
Rooftops. Check them out under User Icon > Backgrounds on web and Menu > Inventory >
Customize Avatar on mobile!
Some favorite pet breeds are back in town! Check out the return of Fairy and Sunshine
Glow Potions to brighten your May avatar look. Buy them from <a href='/shops/market'>the
Market</a> and use them to hatch any standard pet egg. (Magic Hatching Potions do not
work on Quest Pet eggs.) Magic Hatching Potion Pets aren't picky, so they'll happily eat
any kind of food that you feed them!
</p>
<p>
Plus, theres new gold-purchasable equipment in the Enchanted Armoire, including the
Fiddler Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)
After they're gone, it will be at least a year before the Fairy or Sunshine Glow Hatching
Potions are available again, so be sure to get them now!
</p>
<div class="small mb-3">by FolleMente, QuartzFox, Katy133, weeWitch, and Ricardo</div>
<div class="small mb-3">by OuttaMyMind, Lt.Cabel, Eslyn, Edge, and SabreCat</div>
</div>
`,
});