mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
Pull out animal content into separate files (#7989)
* Pull out animal content into separate files * Correct variable names * Add tests for stable, eggs, and hatching potions content * Add content test back into npm test
This commit is contained in:
115
common/script/content/hatching-potions.js
Normal file
115
common/script/content/hatching-potions.js
Normal file
@@ -0,0 +1,115 @@
|
||||
import {
|
||||
assign,
|
||||
defaults,
|
||||
each,
|
||||
} from 'lodash';
|
||||
import t from './translation';
|
||||
|
||||
let drops = {
|
||||
Base: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionBase'),
|
||||
},
|
||||
White: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionWhite'),
|
||||
},
|
||||
Desert: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionDesert'),
|
||||
},
|
||||
Red: {
|
||||
value: 3,
|
||||
text: t('hatchingPotionRed'),
|
||||
},
|
||||
Shade: {
|
||||
value: 3,
|
||||
text: t('hatchingPotionShade'),
|
||||
},
|
||||
Skeleton: {
|
||||
value: 3,
|
||||
text: t('hatchingPotionSkeleton'),
|
||||
},
|
||||
Zombie: {
|
||||
value: 4,
|
||||
text: t('hatchingPotionZombie'),
|
||||
},
|
||||
CottonCandyPink: {
|
||||
value: 4,
|
||||
text: t('hatchingPotionCottonCandyPink'),
|
||||
},
|
||||
CottonCandyBlue: {
|
||||
value: 4,
|
||||
text: t('hatchingPotionCottonCandyBlue'),
|
||||
},
|
||||
Golden: {
|
||||
value: 5,
|
||||
text: t('hatchingPotionGolden'),
|
||||
},
|
||||
};
|
||||
|
||||
let premium = {
|
||||
Spooky: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionSpooky'),
|
||||
limited: true,
|
||||
_season: 'fall',
|
||||
},
|
||||
Peppermint: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionPeppermint'),
|
||||
limited: true,
|
||||
_season: 'winter',
|
||||
},
|
||||
Floral: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionFloral'),
|
||||
limited: true,
|
||||
_season: 'spring',
|
||||
},
|
||||
Thunderstorm: {
|
||||
value: 2,
|
||||
text: t('hatchingPotionThunderstorm'),
|
||||
limited: true,
|
||||
_season: 'summer',
|
||||
},
|
||||
};
|
||||
|
||||
each(drops, (pot, key) => {
|
||||
defaults(pot, {
|
||||
key,
|
||||
value: 2,
|
||||
notes: t('hatchingPotionNotes', {
|
||||
potText: pot.text,
|
||||
}),
|
||||
premium: false,
|
||||
limited: false,
|
||||
canBuy () {
|
||||
return true;
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
each(premium, (pot, key) => {
|
||||
defaults(pot, {
|
||||
key,
|
||||
value: 2,
|
||||
notes: t('hatchingPotionNotes', {
|
||||
potText: pot.text,
|
||||
}),
|
||||
_addlNotes: t(`${pot._season}EventAvailability`),
|
||||
premium: true,
|
||||
limited: false,
|
||||
canBuy () {
|
||||
return false;
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
let all = assign({}, drops, premium);
|
||||
|
||||
module.exports = {
|
||||
drops,
|
||||
premium,
|
||||
all,
|
||||
};
|
||||
Reference in New Issue
Block a user