mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
Armoire and Backgrounds December 2017 (#9659)
* feat(content): Armoire and Backgrounds 2017/12 * chore(sprites): compile * chore(news): Bailey
This commit is contained in:
@@ -591,6 +591,20 @@ let backgrounds = {
|
||||
notes: t('backgroundTornadoNotes'),
|
||||
},
|
||||
},
|
||||
backgrounds122017: {
|
||||
crosscountry_ski_trail: {
|
||||
text: t('backgroundCrosscountrySkiTrailText'),
|
||||
notes: t('backgroundCrosscountrySkiTrailNotes'),
|
||||
},
|
||||
starry_winter_night: {
|
||||
text: t('backgroundStarryWinterNightText'),
|
||||
notes: t('backgroundStarryWinterNightNotes'),
|
||||
},
|
||||
toymakers_workshop: {
|
||||
text: t('backgroundToymakersWorkshopText'),
|
||||
notes: t('backgroundToymakersWorkshopNotes'),
|
||||
},
|
||||
},
|
||||
incentiveBackgrounds: {
|
||||
violet: {
|
||||
text: t('backgroundVioletText'),
|
||||
|
||||
@@ -2,12 +2,13 @@ import {body as baseBody} from './sets/base';
|
||||
|
||||
import {body as mysteryBody} from './sets/mystery';
|
||||
import {body as specialBody} from './sets/special';
|
||||
import {body as armoireBody} from './sets/armoire';
|
||||
|
||||
let body = {
|
||||
base: baseBody,
|
||||
mystery: mysteryBody,
|
||||
special: specialBody,
|
||||
armoire: armoireBody,
|
||||
};
|
||||
|
||||
module.exports = body;
|
||||
|
||||
|
||||
@@ -306,6 +306,24 @@ let armor = {
|
||||
set: 'weaver',
|
||||
canOwn: ownsItem('armor_armoire_wovenRobes'),
|
||||
},
|
||||
lamplightersGreatcoat: {
|
||||
text: t('armorArmoireLamplightersGreatcoatText'),
|
||||
notes: t('armorArmoireLamplightersGreatcoatNotes', { per: 14 }),
|
||||
value: 100,
|
||||
per: 14,
|
||||
set: 'lamplighter',
|
||||
canOwn: ownsItem('armor_armoire_lamplightersGreatcoat'),
|
||||
},
|
||||
};
|
||||
|
||||
let body = {
|
||||
cozyScarf: {
|
||||
text: t('bodyArmoireCozyScarfText'),
|
||||
notes: t('bodyArmoireCozyScarfNotes'),
|
||||
value: 100,
|
||||
set: 'lamplighter',
|
||||
canOwn: ownsItem('body_armoire_cozyScarf'),
|
||||
},
|
||||
};
|
||||
|
||||
let eyewear = {
|
||||
@@ -648,6 +666,14 @@ let head = {
|
||||
set: 'candlestickMaker',
|
||||
canOwn: ownsItem('head_armoire_candlestickMakerHat'),
|
||||
},
|
||||
lamplightersTopHat: {
|
||||
text: t('headArmoireLamplightersTopHatText'),
|
||||
notes: t('headArmoireLamplightersTopHatNotes', { con: 14 }),
|
||||
value: 100,
|
||||
con: 14,
|
||||
set: 'lamplighter',
|
||||
canOwn: ownsItem('head_armoire_lamplightersTopHat'),
|
||||
},
|
||||
};
|
||||
|
||||
let shield = {
|
||||
@@ -1064,10 +1090,20 @@ let weapon = {
|
||||
set: 'weaver',
|
||||
canOwn: ownsItem('weapon_armoire_weaversComb'),
|
||||
},
|
||||
lamplighter: {
|
||||
text: t('weaponArmoireLamplighterText'),
|
||||
notes: t('weaponArmoireLamplighterNotes', { per: 6, con: 8 }),
|
||||
value: 100,
|
||||
per: 6,
|
||||
con: 8,
|
||||
set: 'lamplighter',
|
||||
canOwn: ownsItem('weapon_armoire_lamplighter'),
|
||||
},
|
||||
};
|
||||
|
||||
let armoireSet = {
|
||||
armor,
|
||||
body,
|
||||
eyewear,
|
||||
head,
|
||||
headAccessory,
|
||||
|
||||
Reference in New Issue
Block a user