mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* update(content): add spring fling images, items, and placeholder text * update(dates) : set canonical dates * update(dates/quests): set canonical dates for both, add egg quest availability * update(date): update quest availability start date * update(content): add magic hatching potions * fix(dates): canonical dates * fix(event): add correct event name to potions * fix(dates): canonical dates * fix(dates): fix UTC offset, remove package.json and package-lock.json * fix(dates): canonical * fix: re-added package.json and package-lock.json * update(content): add gear strings * update(content): add Rogue off-hand string, canonical dates
39 lines
1.8 KiB
JavaScript
39 lines
1.8 KiB
JavaScript
import t from '../translation';
|
|
import prefill from './prefill';
|
|
import { EVENTS } from '../constants';
|
|
|
|
export default prefill({
|
|
baseHair1: { setPrice: 5, text: t('hairSet1') },
|
|
baseHair2: { setPrice: 5, text: t('hairSet2') },
|
|
baseHair3: { setPrice: 5, text: t('hairSet3') },
|
|
facialHair: { setPrice: 5, text: t('bodyFacialHair') },
|
|
specialShirts: { setPrice: 5, text: t('specialShirts') },
|
|
winterHairColors: { setPrice: 5, availableUntil: '2016-01-01' },
|
|
pastelHairColors: { setPrice: 5, availableUntil: '2016-01-01' },
|
|
rainbowHairColors: { setPrice: 5, text: t('rainbowColors') },
|
|
shimmerHairColors: {
|
|
setPrice: 5, availableFrom: '2024-04-16T08:00-05:00', availableUntil: EVENTS.spring2024.end, text: t('shimmerColors'),
|
|
},
|
|
hauntedHairColors: {
|
|
setPrice: 5, availableFrom: '2023-10-03T08:00-04:00', availableUntil: EVENTS.fall2023.end, text: t('hauntedColors'),
|
|
},
|
|
winteryHairColors: {
|
|
setPrice: 5, availableFrom: '2023-01-16T08:00-05:00', availableUntil: EVENTS.winter2024.end, text: t('winteryColors'),
|
|
},
|
|
rainbowSkins: { setPrice: 5, text: t('rainbowSkins') },
|
|
animalSkins: { setPrice: 5, text: t('animalSkins') },
|
|
pastelSkins: {
|
|
setPrice: 5, availableFrom: '2024-04-16T08:00-05:00', availableUntil: EVENTS.spring2024.end, text: t('pastelSkins'),
|
|
},
|
|
spookySkins: { setPrice: 5, availableUntil: '2016-01-01', text: t('spookySkins') },
|
|
supernaturalSkins: {
|
|
setPrice: 5, availableFrom: '2023-10-03T08:00-04:00', availableUntil: EVENTS.fall2023.end, text: t('supernaturalSkins'),
|
|
},
|
|
splashySkins: {
|
|
setPrice: 5, availableFrom: '2023-07-11T08:00-05:00', availableUntil: EVENTS.summer2023.end, text: t('splashySkins'),
|
|
},
|
|
winterySkins: {
|
|
setPrice: 5, availableFrom: '2023-01-16T08:00-05:00', availableUntil: EVENTS.winter2024.end, text: t('winterySkins'),
|
|
},
|
|
});
|