mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-13 15:38:59 +00:00
chore(content): make Jungle Buddies available
This commit is contained in:
parent
3e63d74b2c
commit
aea075d0bf
2 changed files with 7 additions and 2 deletions
|
|
@ -235,14 +235,15 @@ const bundles = {
|
|||
jungleBuddies: {
|
||||
key: 'jungleBuddies',
|
||||
text: t('jungleBuddiesText'),
|
||||
notes: t('jungleBuddiesNotes', { date: moment('2020-05-31').format('LL') }),
|
||||
notes: t('jungleBuddiesNotes', { date: moment('2023-03-31').format('LL') }),
|
||||
bundleKeys: [
|
||||
'monkey',
|
||||
'sloth',
|
||||
'treeling',
|
||||
],
|
||||
event: EVENTS.bundle202303,
|
||||
canBuy () {
|
||||
return moment().isBetween('2020-05-19', '2020-06-02');
|
||||
return moment().isBetween(EVENTS.bundle202303.start, EVENTS.bundle202303.end);
|
||||
},
|
||||
type: 'quests',
|
||||
value: 7,
|
||||
|
|
|
|||
|
|
@ -15,6 +15,10 @@ export const EVENTS = {
|
|||
season: 'normal',
|
||||
npcImageSuffix: '',
|
||||
},
|
||||
bundle202303: {
|
||||
start: '2023-03-16T08:00-04:00',
|
||||
end: '2023-03-31T23:59-04:00',
|
||||
},
|
||||
bundle202302: {
|
||||
start: '2023-02-21T08:00-05:00',
|
||||
end: '2023-02-28T23:59-05:00',
|
||||
|
|
|
|||
Loading…
Reference in a new issue