WIP(timetrav): buy BG with Hourglass

This commit is contained in:
Sabe Jones
2020-01-03 12:50:13 -06:00
parent cf7c9160fd
commit e8edc9669a
36 changed files with 101 additions and 28 deletions

View File

@@ -973,6 +973,26 @@ const backgrounds = {
currency: 'loginIncentive',
},
},
timeTravelBackgrounds: {
airship: {
text: t('backgroundAirshipText'),
notes: t('backgroundAirshipNotes'),
price: 1,
currency: 'hourglasses',
},
clocktower: {
text: t('backgroundClocktowerText'),
notes: t('backgroundClocktowerNotes'),
price: 1,
currency: 'hourglasses',
},
steamworks: {
text: t('backgroundSteamworksText'),
notes: t('backgroundSteamworksNotes'),
price: 1,
currency: 'hourglasses',
},
},
};
/* eslint-enable quote-props */
@@ -982,7 +1002,7 @@ forOwn(backgrounds, (backgroundsInSet, set) => {
forOwn(backgroundsInSet, (background, bgKey) => {
background.key = bgKey;
background.set = set;
background.price = 7;
background.price = background.price || 7;
flat[bgKey] = background;
});