mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
feat(content): Armoire and BGs 2016-07 (#7762)
* feat(content): Armoire and BGs 2016-07 * fix(backgrounds): resize Dilatory Castle Also fixes a long-overlooked issue where the Egg Hunt quest remained available long after its event ended.
This commit is contained in:
@@ -353,6 +353,20 @@ let backgrounds = {
|
||||
notes: t('backgroundWaterfallRockNotes'),
|
||||
},
|
||||
},
|
||||
backgrounds072016: {
|
||||
aquarium: {
|
||||
text: t('backgroundAquariumText'),
|
||||
notes: t('backgroundAquariumNotes'),
|
||||
},
|
||||
dilatory_castle: {
|
||||
text: t('backgroundDilatoryCastleText'),
|
||||
notes: t('backgroundDilatoryCastleNotes'),
|
||||
},
|
||||
deep_sea: {
|
||||
text: t('backgroundDeepSeaText'),
|
||||
notes: t('backgroundDeepSeaNotes'),
|
||||
},
|
||||
},
|
||||
};
|
||||
/* eslint-enable quote-props */
|
||||
|
||||
|
||||
@@ -142,6 +142,14 @@ let armor = {
|
||||
set: 'seaside',
|
||||
canOwn: ownsItem('armor_armoire_stripedSwimsuit'),
|
||||
},
|
||||
cannoneerRags: {
|
||||
text: t('armorArmoireCannoneerRagsText'),
|
||||
notes: t('armorArmoireCannoneerRagsNotes', { con: 15 }),
|
||||
value: 100,
|
||||
con: 15,
|
||||
set: 'cannoneer',
|
||||
canOwn: ownsItem('armor_armoire_cannoneerRags'),
|
||||
},
|
||||
};
|
||||
|
||||
let eyewear = {
|
||||
@@ -363,6 +371,15 @@ let head = {
|
||||
con: 8,
|
||||
canOwn: ownsItem('head_armoire_greenFloppyHat'),
|
||||
},
|
||||
cannoneerBandanna: {
|
||||
text: t('headArmoireCannoneerBandannaText'),
|
||||
notes: t('headArmoireCannoneerBandannaNotes', { attrs: 15 }),
|
||||
value: 100,
|
||||
int: 15,
|
||||
per: 15,
|
||||
set: 'cannoneer',
|
||||
canOwn: ownsItem('head_armoire_cannoneerBandanna'),
|
||||
},
|
||||
};
|
||||
|
||||
let shield = {
|
||||
@@ -585,6 +602,14 @@ let weapon = {
|
||||
set: 'seaside',
|
||||
canOwn: ownsItem('weapon_armoire_sandySpade'),
|
||||
},
|
||||
cannon: {
|
||||
text: t('weaponArmoireCannonText'),
|
||||
notes: t('weaponArmoireCannonNotes', { str: 15 }),
|
||||
value: 100,
|
||||
str: 15,
|
||||
set: 'cannoneer',
|
||||
canOwn: ownsItem('weapon_armoire_cannon'),
|
||||
},
|
||||
};
|
||||
|
||||
let armoireSet = {
|
||||
|
||||
@@ -1327,7 +1327,7 @@ api.quests = {
|
||||
completion: t('questEggHuntCompletion'),
|
||||
value: 1,
|
||||
canBuy: (function() {
|
||||
return true;
|
||||
return false;
|
||||
}),
|
||||
category: 'pet',
|
||||
collect: {
|
||||
|
||||
Reference in New Issue
Block a user