mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
feat(content): backgrounds and Armoire Feb 2018
Also ends Winter Wonderland event
This commit is contained in:
@@ -619,6 +619,20 @@ let backgrounds = {
|
||||
notes: t('backgroundFlyingOverIcySteppesNotes'),
|
||||
},
|
||||
},
|
||||
backgrounds022018: {
|
||||
chessboard_land: {
|
||||
text: t('backgroundChessboardLandText'),
|
||||
notes: t('backgroundChessboardLandNotes'),
|
||||
},
|
||||
magical_museum: {
|
||||
text: t('backgroundMagicalMuseumText'),
|
||||
notes: t('backgroundMagicalMuseumNotes'),
|
||||
},
|
||||
rose_garden: {
|
||||
text: t('backgroundRoseGardenText'),
|
||||
notes: t('backgroundRoseGardenNotes'),
|
||||
},
|
||||
},
|
||||
incentiveBackgrounds: {
|
||||
violet: {
|
||||
text: t('backgroundVioletText'),
|
||||
|
||||
@@ -322,6 +322,14 @@ let armor = {
|
||||
set: 'coachDriver',
|
||||
canOwn: ownsItem('armor_armoire_coachDriverLivery'),
|
||||
},
|
||||
robeOfDiamonds: {
|
||||
text: t('armorArmoireRobeOfDiamondsText'),
|
||||
notes: t('armorArmoireRobeOfDiamondsNotes', { per: 13 }),
|
||||
value: 100,
|
||||
per: 13,
|
||||
set: 'kingOfDiamonds',
|
||||
canOwn: ownsItem('armor_armoire_robeOfDiamonds'),
|
||||
},
|
||||
};
|
||||
|
||||
let body = {
|
||||
@@ -690,6 +698,14 @@ let head = {
|
||||
set: 'coachDriver',
|
||||
canOwn: ownsItem('head_armoire_coachDriversHat'),
|
||||
},
|
||||
crownOfDiamonds: {
|
||||
text: t('headArmoireCrownOfDiamondsText'),
|
||||
notes: t('headArmoireCrownOfDiamondsNotes', { int: 13 }),
|
||||
value: 100,
|
||||
int: 13,
|
||||
set: 'kingOfDiamonds',
|
||||
canOwn: ownsItem('head_armoire_crownOfDiamonds'),
|
||||
},
|
||||
};
|
||||
|
||||
let shield = {
|
||||
@@ -851,6 +867,14 @@ let shield = {
|
||||
set: 'weaver',
|
||||
canOwn: ownsItem('shield_armoire_weaversShuttle'),
|
||||
},
|
||||
shieldOfDiamonds: {
|
||||
text: t('shieldArmoireShieldOfDiamondsText'),
|
||||
notes: t('shieldArmoireShieldOfDiamondsNotes', { con: 10 }),
|
||||
value: 100,
|
||||
con: 10,
|
||||
// set: 'kingOfDiamonds',
|
||||
canOwn: ownsItem('shield_armoire_shieldOfDiamonds'),
|
||||
},
|
||||
};
|
||||
|
||||
let headAccessory = {
|
||||
@@ -1124,6 +1148,14 @@ let weapon = {
|
||||
set: 'coachDriver',
|
||||
canOwn: ownsItem('weapon_armoire_coachDriversWhip'),
|
||||
},
|
||||
scepterOfDiamonds: {
|
||||
text: t('weaponArmoireScepterOfDiamondsText'),
|
||||
notes: t('weaponArmoireScepterOfDiamondsNotes', { str: 13 }),
|
||||
value: 100,
|
||||
str: 13,
|
||||
set: 'kingOfDiamonds',
|
||||
canOwn: ownsItem('weapon_armoire_scepterOfDiamonds'),
|
||||
},
|
||||
};
|
||||
|
||||
let armoireSet = {
|
||||
|
||||
@@ -3,7 +3,7 @@ import defaults from 'lodash/defaults';
|
||||
import each from 'lodash/each';
|
||||
import t from './translation';
|
||||
|
||||
const CURRENT_SEASON = 'January';
|
||||
const CURRENT_SEASON = 'NONE';
|
||||
|
||||
let drops = {
|
||||
Base: {
|
||||
|
||||
@@ -266,12 +266,12 @@ api.specialMounts = stable.specialMounts;
|
||||
api.mountInfo = stable.mountInfo;
|
||||
|
||||
// For seasonal events, change these booleans:
|
||||
let canBuyNormalFood = false;
|
||||
let canDropNormalFood = false;
|
||||
let canBuyNormalFood = true;
|
||||
let canDropNormalFood = true;
|
||||
let canBuyCandyFood = false;
|
||||
let canDropCandyFood = false;
|
||||
let canBuyCakeFood = true;
|
||||
let canDropCakeFood = true;
|
||||
let canBuyCakeFood = false;
|
||||
let canDropCakeFood = false;
|
||||
|
||||
api.food = {
|
||||
Meat: {
|
||||
|
||||
@@ -6,11 +6,11 @@ const featuredItems = {
|
||||
},
|
||||
{
|
||||
type: 'hatchingPotions',
|
||||
path: 'hatchingPotions.Holly',
|
||||
path: 'hatchingPotions.CottonCandyBlue',
|
||||
},
|
||||
{
|
||||
type: 'hatchingPotions',
|
||||
path: 'hatchingPotions.StarryNight',
|
||||
path: 'hatchingPotions.Golden',
|
||||
},
|
||||
{
|
||||
type: 'card',
|
||||
|
||||
Reference in New Issue
Block a user