feat(content): customizations and dinosaurs

This commit is contained in:
Sabe Jones
2019-01-08 19:30:41 -06:00
parent ec81c02d72
commit 1d1b25391f
50 changed files with 66 additions and 9 deletions

View File

@@ -12,12 +12,12 @@ module.exports = prefill({
rainbowHairColors: {setPrice: 5, text: t('rainbowColors')},
shimmerHairColors: {setPrice: 5, availableFrom: '2018-04-05', availableUntil: '2018-05-02', text: t('shimmerColors')},
hauntedHairColors: {setPrice: 5, availableFrom: '2018-10-11', availableUntil: '2018-11-02', text: t('hauntedColors')},
winteryHairColors: {setPrice: 5, availableFrom: '2018-01-04', availableUntil: '2018-02-02', text: t('winteryColors')},
winteryHairColors: {setPrice: 5, availableFrom: '2019-01-08', availableUntil: '2019-02-02', text: t('winteryColors')},
rainbowSkins: {setPrice: 5, text: t('rainbowSkins')},
animalSkins: {setPrice: 5, text: t('animalSkins')},
pastelSkins: {setPrice: 5, availableFrom: '2018-04-05', availableUntil: '2018-05-02', text: t('pastelSkins')},
spookySkins: {setPrice: 5, availableUntil: '2016-01-01', text: t('spookySkins')},
supernaturalSkins: {setPrice: 5, availableFrom: '2018-10-11', availableUntil: '2018-11-02', text: t('supernaturalSkins')},
splashySkins: {setPrice: 5, availableFrom: '2018-07-10', availableUntil: '2018-08-02', text: t('splashySkins')},
winterySkins: {setPrice: 5, availableFrom: '2018-01-04', availableUntil: '2018-02-02', text: t('winterySkins')},
winterySkins: {setPrice: 5, availableFrom: '2019-01-08', availableUntil: '2019-02-02', text: t('winterySkins')},
});

View File

@@ -374,6 +374,12 @@ let quests = {
adjective: t('questEggAlligatorAdjective'),
canBuy: hasQuestAchievementFunction('alligator'),
},
Velociraptor: {
text: t('questEggVelociraptorText'),
mountText: t('questEggVelociraptorMountText'),
adjective: t('questEggVelociraptorAdjective'),
canBuy: hasQuestAchievementFunction('velociraptor'),
},
};
applyEggDefaults(drops, {

View File

@@ -3321,6 +3321,39 @@ let quests = {
unlock: t('questAlligatorUnlockText'),
},
},
velociraptor: {
text: t('questVelociraptorText'),
notes: t('questVelociraptorNotes'),
completion: t('questVelociraptorCompletion'),
value: 4,
category: 'pet',
boss: {
name: t('questVelociraptorBoss'),
hp: 900,
str: 2,
},
drop: {
items: [
{
type: 'eggs',
key: 'Velociraptor',
text: t('questVelociraptorDropVelociraptorEgg'),
}, {
type: 'eggs',
key: 'Velociraptor',
text: t('questVelociraptorDropVelociraptorEgg'),
}, {
type: 'eggs',
key: 'Velociraptor',
text: t('questVelociraptorDropVelociraptorEgg'),
},
],
gp: 63,
exp: 575,
unlock: t('questVelociraptorUnlockText'),
},
},
};
each(quests, (v, key) => {