feat(content): backgrounds and Armoire Feb 2017

This commit is contained in:
Sabe Jones
2017-02-02 17:30:46 +00:00
parent 3fe847f329
commit 569fbff244
16 changed files with 47 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -1049,8 +1049,8 @@
"shieldArmoirePerchingFalconNotes": "A falcon friend perches on your arm, prepared to swoop at your enemies. Increases Strength by <%= str %>. Enchanted Armoire: Falconer Set (Item 3 of 3).",
"shieldArmoireRamHornShieldText": "Ram Horn Shield",
"shieldArmoireRamHornShieldNotes": "Ram this shield into opposing Dailies! Increases Constitution and Strength by <%= attrs %> each. Enchanted Armoire: Ram Barbarian Set (3 of 3).",
"shieldArmoireRoseOfHeartsText": "Red Rose",
"shieldArmoireRoseOfHeartsNotes": "This deep red rose smells enchanting. It will also sharpen your understanding. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
"shieldArmoireRedRoseText": "Red Rose",
"shieldArmoireRedRoseNotes": "This deep red rose smells enchanting. It will also sharpen your understanding. Increases Perception by <%= per %>. Enchanted Armoire: Independent Item.",
"back": "Back Accessory",
"backBase0Text": "No Back Accessory",

View File

@@ -451,6 +451,20 @@ let backgrounds = {
notes: t('backgroundStoikalmVolcanoesNotes'),
},
},
backgrounds022017: {
bell_tower: {
text: t('backgroundBellTowerText'),
notes: t('backgroundBellTowerNotes'),
},
treasure_room: {
text: t('backgroundTreasureRoomText'),
notes: t('backgroundTreasureRoomNotes'),
},
wedding_arch: {
text: t('backgroundWeddingArchText'),
notes: t('backgroundWeddingArchNotes'),
},
},
incentiveBackgrounds: {
blue: {
text: t('backgroundBlueText'),

View File

@@ -209,6 +209,14 @@ let armor = {
set: 'ramBarbarian',
canOwn: ownsItem('armor_armoire_ramFleeceRobes'),
},
gownOfHearts: {
text: t('armorArmoireGownOfHeartsText'),
notes: t('armorArmoireGownOfHeartsNotes', { con: 13 }),
value: 100,
con: 13,
set: 'queenOfHearts',
canOwn: ownsItem('armor_armoire_gownOfHearts'),
},
};
let eyewear = {
@@ -490,6 +498,14 @@ let head = {
set: 'ramBarbarian',
canOwn: ownsItem('head_armoire_ramHeaddress'),
},
crownOfHearts: {
text: t('headArmoireCrownOfHeartsText'),
notes: t('headArmoireCrownOfHeartsNotes', { str: 13 }),
value: 100,
str: 13,
set: 'queenOfHearts',
canOwn: ownsItem('head_armoire_crownOfHearts'),
},
};
let shield = {
@@ -567,6 +583,13 @@ let shield = {
set: 'ramBarbarian',
canOwn: ownsItem('shield_armoire_ramHornShield'),
},
redRose: {
text: t('shieldArmoireRedRoseText'),
notes: t('shieldArmoireRedRoseNotes', { per: 10 }),
value: 100,
per: 10,
canOwn: ownsItem('shield_armoire_redRose'),
},
};
let headAccessory = {
@@ -763,6 +786,14 @@ let weapon = {
set: 'woodElf',
canOwn: ownsItem('weapon_armoire_woodElfStaff'),
},
wandOfHearts: {
text: t('weaponArmoireWandOfHeartsText'),
notes: t('weaponArmoireWandOfHeartsNotes', { int: 13 }),
value: 100,
int: 13,
set: 'queenOfHearts',
canOwn: ownsItem('weapon_armoire_wandOfHearts'),
},
};
let armoireSet = {