feat(content): Armoire items and backgrounds 5/19
|
|
@ -489,5 +489,13 @@
|
|||
"backgroundHalflingsHouseText": "Halfling's House",
|
||||
"backgroundHalflingsHouseNotes": "Visit a charming Halfling's House.",
|
||||
"backgroundBlossomingDesertText": "Blossoming Desert",
|
||||
"backgroundBlossomingDesertNotes": "Witness a rare superbloom in the Blossoming Desert."
|
||||
"backgroundBlossomingDesertNotes": "Witness a rare superbloom in the Blossoming Desert.",
|
||||
|
||||
"backgrounds052019": "SET 60: Released May 2019",
|
||||
"backgroundDojoText": "Dojo",
|
||||
"backgroundDojoNotes": "Learn new moves in a Dojo.",
|
||||
"backgroundParkWithStatueText": "Park with Statue",
|
||||
"backgroundParkWithStatueNotes": "Follow a flower-lined path through a Park with a Statue.",
|
||||
"backgroundRainbowMeadowText": "Rainbow Meadow",
|
||||
"backgroundRainbowMeadowNotes": "Find the pot of gold where a Rainbow ends in a Meadow."
|
||||
}
|
||||
|
|
|
|||
|
|
@ -422,6 +422,8 @@
|
|||
"weaponArmoireJugglingBallsNotes": "Habiticans are master multi-taskers, so you should have no trouble keeping all these balls in the air! Increases Intelligence by <%= int %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireSlingshotText": "Slingshot",
|
||||
"weaponArmoireSlingshotNotes": "Take aim at your red Dailies! Increases Strength by <%= str %>. Enchanted Armoire: Independent Item.",
|
||||
"weaponArmoireNephriteBowText": "Nephrite Bow",
|
||||
"weaponArmoireNephriteBowNotes": "This bow shoots special jade-tipped arrows that will take down even your most stubborn bad habits! Increases Intelligence by <%= int %> and Strength by <%= str %>. Enchanted Armoire: Nephrite Archer Set (Item 1 of 3).",
|
||||
|
||||
"armor": "armor",
|
||||
"armorCapitalized": "Armor",
|
||||
|
|
@ -912,6 +914,8 @@
|
|||
"armorArmoireChefsJacketNotes": "This thick cotton jacket is double-breasted to protect you from spills (and conveniently reversible…). Increases Intelligence by <%= int %>. Enchanted Armoire: Chef Set (Item 2 of 4).",
|
||||
"armorArmoireVernalVestmentText": "Vernal Vestment",
|
||||
"armorArmoireVernalVestmentNotes": "This silky garment is perfect for enjoying mild spring weather in style. Increases Strength and Intelligence by <%= attrs %> each. Enchanted Armoire: Vernal Vestments Set (Item 2 of 3).",
|
||||
"armorArmoireNephriteArmorText": "Nephrite Armor",
|
||||
"armorArmoireNephriteArmorNotes": "Made from strong steel rings and decorated with jade, this armor will protect you from procrastination! Increases Strength by <%= str %> and Perception by <%= per %>. Enchanted Armoire: Nephrite Archer Set (Item 3 of 3).",
|
||||
|
||||
"headgear": "helm",
|
||||
"headgearCapitalized": "Headgear",
|
||||
|
|
@ -1416,6 +1420,8 @@
|
|||
"headArmoireVernalHenninNotes": "More than just a pretty hat, this conical chapeau can also hold a rolled-up To-Do list inside. Increases Perception by <%= per %>. Enchanted Armoire: Vernal Vestments Set (Item 1 of 3).",
|
||||
"headArmoireTricornHatText": "Tricorn Hat",
|
||||
"headArmoireTricornHatNotes": "Become a revolutionary jokester! Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
|
||||
"headArmoireNephriteHelmText": "Nephrite Helm",
|
||||
"headArmoireNephriteHelmNotes": "The carved jade plume atop this helm is enchanted to enhance your aim. Increases Perception by <%= per %> and Intelligence by <%= int %>. Enchanted Armoire: Nephrite Archer Set (Item 2 of 3).",
|
||||
|
||||
"offhand": "off-hand item",
|
||||
"offhandCapitalized": "Off-Hand Item",
|
||||
|
|
|
|||
|
|
@ -829,6 +829,20 @@ let backgrounds = {
|
|||
notes: t('backgroundBirchForestNotes'),
|
||||
},
|
||||
},
|
||||
backgrounds052019: {
|
||||
dojo: {
|
||||
text: t('backgroundDojoText'),
|
||||
notes: t('backgroundDojoNotes'),
|
||||
},
|
||||
park_with_statue: {
|
||||
text: t('backgroundParkWithStatueText'),
|
||||
notes: t('backgroundParkWithStatueNotes'),
|
||||
},
|
||||
rainbow_meadow: {
|
||||
text: t('backgroundRainbowMeadowText'),
|
||||
notes: t('backgroundRainbowMeadowNotes'),
|
||||
},
|
||||
},
|
||||
incentiveBackgrounds: {
|
||||
violet: {
|
||||
text: t('backgroundVioletText'),
|
||||
|
|
|
|||
|
|
@ -453,6 +453,15 @@ let armor = {
|
|||
set: 'vernalVestments',
|
||||
canOwn: ownsItem('armor_armoire_vernalVestment'),
|
||||
},
|
||||
nephriteArmor: {
|
||||
text: t('armorArmoireNephriteArmorText'),
|
||||
notes: t('armorArmoireNephriteArmorNotes', { str: 7, per: 6 }),
|
||||
value: 100,
|
||||
str: 7,
|
||||
per: 6,
|
||||
set: 'nephrite',
|
||||
canOwn: ownsItem('armor_armoire_nephriteArmor'),
|
||||
},
|
||||
};
|
||||
|
||||
let body = {
|
||||
|
|
@ -931,6 +940,15 @@ let head = {
|
|||
per: 10,
|
||||
canOwn: ownsItem('head_armoire_tricornHat'),
|
||||
},
|
||||
nephriteHelm: {
|
||||
text: t('headArmoireNephriteHelmText'),
|
||||
notes: t('headArmoireNephriteHelmNotes', { per: 7, int: 6 }),
|
||||
value: 100,
|
||||
per: 7,
|
||||
int: 6,
|
||||
set: 'nephrite',
|
||||
canOwn: ownsItem('head_armoire_nephriteHelm'),
|
||||
},
|
||||
};
|
||||
|
||||
let shield = {
|
||||
|
|
@ -1574,6 +1592,16 @@ let weapon = {
|
|||
str: 10,
|
||||
canOwn: ownsItem('weapon_armoire_slingshot'),
|
||||
},
|
||||
nephriteBow: {
|
||||
text: t('weaponArmoireNephriteBowText'),
|
||||
notes: t('weaponArmoireNephriteBowNotes', { int: 7, str: 6 }),
|
||||
value: 100,
|
||||
int: 7,
|
||||
str: 6,
|
||||
set: 'nephrite',
|
||||
twoHanded: true,
|
||||
canOwn: ownsItem('weapon_armoire_nephriteBow'),
|
||||
},
|
||||
};
|
||||
|
||||
let armoireSet = {
|
||||
|
|
|
|||
BIN
website/raw_sprites/spritesmith/backgrounds/background_dojo.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 15 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 687 B |
|
After Width: | Height: | Size: 662 B |
|
After Width: | Height: | Size: 629 B |
|
After Width: | Height: | Size: 600 B |
|
After Width: | Height: | Size: 476 B |
|
After Width: | Height: | Size: 650 B |
|
After Width: | Height: | Size: 536 B |
|
Before Width: | Height: | Size: 14 KiB |
|
After Width: | Height: | Size: 16 KiB |
|
|
@ -3,7 +3,7 @@ import { authWithHeaders } from '../../middlewares/auth';
|
|||
let api = {};
|
||||
|
||||
// @TODO export this const, cannot export it from here because only routes are exported from controllers
|
||||
const LAST_ANNOUNCEMENT_TITLE = 'MAY 2019 RESOLUTION SUCCESS CHALLENGE AND NEW TAKE THIS CHALLENGE!';
|
||||
const LAST_ANNOUNCEMENT_TITLE = 'MAY BACKGROUNDS AND ARMOIRE ITEMS!';
|
||||
const worldDmg = { // @TODO
|
||||
bailey: false,
|
||||
};
|
||||
|
|
@ -30,18 +30,14 @@ api.getNews = {
|
|||
<div class="mr-3 ${baileyClass}"></div>
|
||||
<div class="media-body">
|
||||
<h1 class="align-self-center">${res.t('newStuff')}</h1>
|
||||
<h2>4/30/2019 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
|
||||
<h2>5/7/2019 - ${LAST_ANNOUNCEMENT_TITLE}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<hr/>
|
||||
<div class="scene_spells center-block"></div>
|
||||
<p>The Habitica team has launched a special official Challenge series hosted in the <a href='/groups/guild/6e6a8bd3-9f5f-4351-9188-9f11fcd80a99' target='_blank'>Official New Year's Resolution Guild</a>. These Challenges are designed to help you build and maintain goals that are destined for success and then stick with them as the year progresses. For this month's Challenge, (Review Your Combat Tactics) [https://habitica.com/challenges/f64a1afa-ae00-4855-91af-b52e9bd6803f], we're focusing on refining your strategy to help you stay motivated and keep moving forward as we're almost halfway through the year!! It has a 15 Gem prize, which will be awarded to five lucky winners on June 3.</p>
|
||||
<p>Congratulations to the winners of April's Challenge: punkshep, Syntrillium, BardoVelho, Betsy, and Baileythebookworm!</p>
|
||||
<p>The next Take This Challenge has also launched, "<a href='/challenges/fd1beea9-d92f-4f8f-b58c-8f5319991ad1'>Organize Your Inventory!</a>", with a focus on decluttering your living space. Be sure to check it out to earn additional pieces of the Take This armor set!</p>
|
||||
<p><a href='http://www.takethis.org/' target='_blank'>Take This</a> is a nonprofit that seeks to inform the gamer community about mental health issues, to provide education about mental disorders and mental illness prevention, and to reduce the stigma of mental illness.</p>
|
||||
<p>Congratulations to the winners of the last Take This Challenge, "Harder, Faster, Stronger!": grand prize winner Evan Cowan, and runners-up ResearcherLilly, corinnetags, Lucy, mrdarq, and Snarky. Plus, all participants in that Challenge have received a piece of the <a href='http://habitica.wikia.com/wiki/Event_Item_Sequences#Take_This_Armor_Set' target='_blank'>Take This item set</a> if they hadn't completed it already. It is located in your Rewards column. Enjoy!</p>
|
||||
<div class="small mb-3">by Doctor B, the Take This team, Lemoness, Beffymaroo, and SabreCat</div>
|
||||
<div class="promo_take_this center-block"></div>
|
||||
<div class="promo_armoire_backgrounds_201905 center-block"></div>
|
||||
<p>We’ve added three new backgrounds to the Background Shop! Now your avatar can learn new moves in the Dojo, stroll in a Park with a Statue, and admire a Rainbow Meadow. Check them out under User Icon > Backgrounds!</p>
|
||||
<p>Plus, there’s new Gold-purchasable equipment in the Enchanted Armoire, including the Nephrite Archer Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)</p>
|
||||
<div class="small mb-3">by Balduranne, QuartzFox, AnnDeLune, GeraldThePixel, Reesachan, and Mewrose</div>
|
||||
</div>
|
||||
`,
|
||||
});
|
||||
|
|
|
|||