diff --git a/common/img/sprites/spritesmith/backgrounds/background_cornfields.png b/common/img/sprites/spritesmith/backgrounds/background_cornfields.png
new file mode 100644
index 0000000000..3ccb47eb83
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_cornfields.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_farmhouse.png b/common/img/sprites/spritesmith/backgrounds/background_farmhouse.png
new file mode 100644
index 0000000000..f636c83594
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_farmhouse.png differ
diff --git a/common/img/sprites/spritesmith/backgrounds/background_orchard.png b/common/img/sprites/spritesmith/backgrounds/background_orchard.png
new file mode 100644
index 0000000000..2dfbdbc6df
Binary files /dev/null and b/common/img/sprites/spritesmith/backgrounds/background_orchard.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png
new file mode 100644
index 0000000000..5adab2b722
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/broad_armor_armoire_vermilionArcherArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png b/common/img/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png
new file mode 100644
index 0000000000..e62ea71344
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/head_armoire_vermilionArcherHelm.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png
new file mode 100644
index 0000000000..6a41fa02ee
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_armor_armoire_vermilionArcherArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png
new file mode 100644
index 0000000000..2ebcfd948a
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_head_armoire_vermilionArcherHelm.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png
new file mode 100644
index 0000000000..c5c439b47e
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/shop/shop_weapon_armoire_vermilionArcherBow.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png
new file mode 100644
index 0000000000..c83aa7c209
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/slim_armor_armoire_vermilionArcherArmor.png differ
diff --git a/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png
new file mode 100644
index 0000000000..6dbec22a42
Binary files /dev/null and b/common/img/sprites/spritesmith/gear/armoire/weapon_armoire_vermilionArcherBow.png differ
diff --git a/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png
new file mode 100644
index 0000000000..d94e3af2ce
Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_backgrounds_armoire_201609.png differ
diff --git a/common/script/content/appearance/backgrounds.js b/common/script/content/appearance/backgrounds.js
index df9e64c321..9e39bb3e6c 100644
--- a/common/script/content/appearance/backgrounds.js
+++ b/common/script/content/appearance/backgrounds.js
@@ -381,6 +381,20 @@ let backgrounds = {
notes: t('backgroundStormyShipNotes'),
},
},
+ backgrounds092016: {
+ cornfields: {
+ text: t('backgroundCornfieldsText'),
+ notes: t('backgroundCornfieldsNotes'),
+ },
+ farmhouse: {
+ text: t('backgroundFarmhouseText'),
+ notes: t('backgroundFarmhouseNotes'),
+ },
+ orchard: {
+ text: t('backgroundOrchardText'),
+ notes: t('backgroundOrchardNotes'),
+ },
+ },
};
/* eslint-enable quote-props */
diff --git a/common/script/content/gear/sets/armoire.js b/common/script/content/gear/sets/armoire.js
index 6c69c5dc89..f6dc3d430d 100644
--- a/common/script/content/gear/sets/armoire.js
+++ b/common/script/content/gear/sets/armoire.js
@@ -158,6 +158,14 @@ let armor = {
set: 'falconer',
canOwn: ownsItem('armor_armoire_falconerArmor'),
},
+ vermilionArcherArmor: {
+ text: t('armorArmoireVermilionArcherArmorText'),
+ notes: t('armorArmoireVermilionArcherArmorNotes', { per: 15 }),
+ value: 100,
+ per: 15,
+ set: 'vermilionArcher',
+ canOwn: ownsItem('armor_armoire_vermilionArcherArmor'),
+ },
};
let eyewear = {
@@ -396,6 +404,14 @@ let head = {
set: 'falconer',
canOwn: ownsItem('head_armoire_falconerCap'),
},
+ vermilionArcherHelm: {
+ text: t('headArmoireVermilionArcherHelmText'),
+ notes: t('headArmoireVermilionArcherHelmNotes', { per: 12 }),
+ value: 100,
+ per: 12,
+ set: 'vermilionArcher',
+ canOwn: ownsItem('head_armoire_vermilionArcherHelm'),
+ },
};
let shield = {
@@ -634,6 +650,15 @@ let weapon = {
set: 'cannoneer',
canOwn: ownsItem('weapon_armoire_cannon'),
},
+ vermilionArcherBow: {
+ text: t('weaponArmoireVermilionArcherBowText'),
+ notes: t('weaponArmoireVermilionArcherBowNotes', { str: 15 }),
+ value: 100,
+ str: 15,
+ twoHanded: true,
+ set: 'vermilionArcher',
+ canOwn: ownsItem('weapon_armoire_vermilionArcherBow'),
+ },
};
let armoireSet = {
diff --git a/website/views/shared/new-stuff.jade b/website/views/shared/new-stuff.jade
index c8da60d3b9..c778829a17 100644
--- a/website/views/shared/new-stuff.jade
+++ b/website/views/shared/new-stuff.jade
@@ -1,29 +1,48 @@
-h2 8/30/2016 - LAST CHANCE FOR THUNDERSTORM ITEMS; BACK TO SCHOOL GUILD SPOTLIGHT
+h2 9/1/2016 - NEW BACKGROUNDS, ARMOIRE ITEMS, AND TAKE THIS CHALLENGE
+ .promo_backgrounds_armoire_201609.pull-right
hr
tr
td
- .promo_mystery_201608.pull-right
- h3 Last Chance for Thunderstormer Set
- p Reminder: this is the final day to subscribe and receive the Thunderstorm Item Set! Thanks so much for your support <3
- p.small.muted by Lemoness
+ h3 September Backgrounds and Armoire Items!
+ p We’ve added three new backgrounds: Orchard, Farmhouse, and Cornfields! Get them now from the Background Shop and show off your avatars in the Tavern!
+ br
+ p Plus, there’s new Gold-purchasable equipment in the Enchanted Armoire, including the Vermillion Archer Set. Better work hard on your real-life tasks to earn all the pieces! Enjoy :)
+ p.small.muted by Totoro, James Danger, and Balduranne
tr
td
- span.Mount_Body_Dragon-Thunderstorm.pull-right
- span.Mount_Head_Dragon-Thunderstorm.pull-right(style='margin:0')
- h3 Last Chance for Thunderstorm Hatching Potions
- p Reminder: this is the final day to buy Thunderstorm Hatching Potions! They won't be back until next year, so don't delay!
- p.small.muted by Balduranne
- tr
- td
- h3 Guild Spotlight: Back to School
- p There's a new Guild Spotlight on the blog that highlights the Guilds that can help you as you head back to school! Check it out now to find Habitica's best scholarly communities.
- p.small.muted by Lemoness
+ .promo_takeThis.pull-right
+ h3 New Take This Challenge!
+ p The next Take This Challenge has launched, "I Am The Night!", with a focus on forming better sleep habits. Be sure to check it out to earn additional pieces of the Take This armor set!
+ br
+ p Take This 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.
+ br
+ p Congratulations to the winners of the last Take This Challenge, "Cast of Characters!": grand prize winner Dragonezss, and runners-up elizacorps, jwmeyer86, chady025, Max Yong, and Nightstalker_oL. Plus, all participants in that Challenge have received a piece of the Take This item set. It is located in your Rewards column. Enjoy!
+ p.small.muted by Lemoness, SabreCat, Doctor B, Gordon Shippey, and the Take This team
if menuItem !== 'oldNews'
hr
a(href='/static/old-news', target='_blank') Read older news
mixin oldNews
+ h2 8/30/2016 - LAST CHANCE FOR THUNDERSTORM ITEMS; BACK TO SCHOOL GUILD SPOTLIGHT
+ tr
+ td
+ .promo_mystery_201608.pull-right
+ h3 Last Chance for Thunderstormer Set
+ p Reminder: this is the final day to subscribe and receive the Thunderstorm Item Set! Thanks so much for your support <3
+ p.small.muted by Lemoness
+ tr
+ td
+ span.Mount_Body_Dragon-Thunderstorm.pull-right
+ span.Mount_Head_Dragon-Thunderstorm.pull-right(style='margin:0')
+ h3 Last Chance for Thunderstorm Hatching Potions
+ p Reminder: this is the final day to buy Thunderstorm Hatching Potions! They won't be back until next year, so don't delay!
+ p.small.muted by Balduranne
+ tr
+ td
+ h3 Guild Spotlight: Back to School
+ p There's a new Guild Spotlight on the blog that highlights the Guilds that can help you as you head back to school! Check it out now to find Habitica's best scholarly communities.
+ p.small.muted by Lemoness
h2 8/23/2016 - AUGUST SUBSCRIBER ITEMS, ANDROID UPDATE, AND BLOG POSTS
tr
td