mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 22:27:26 +01:00
commit27287ac3aaAuthor: CuriousMagpie <eilatan@gmail.com> Date: Mon May 22 15:59:20 2023 -0400 fix(typo): typos fixed commita4df8097cfAuthor: CuriousMagpie <eilatan@gmail.com> Date: Mon May 22 15:57:17 2023 -0400 feat(content): add migration script commit23ff7845c1Merge:d02644e21b8ba7117fa5Author: CuriousMagpie <eilatan@gmail.com> Date: Mon May 22 15:42:32 2023 -0400 Merge branch 'develop' into achievement-dinosaur-dynasty commit8ba7117fa5Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 22 12:35:07 2023 -0400 build(deps): bump stripe from 12.5.0 to 12.6.0 (#14662) Bumps [stripe](https://github.com/stripe/stripe-node) from 12.5.0 to 12.6.0. - [Release notes](https://github.com/stripe/stripe-node/releases) - [Changelog](https://github.com/stripe/stripe-node/blob/master/CHANGELOG.md) - [Commits](https://github.com/stripe/stripe-node/compare/v12.5.0...v12.6.0) --- updated-dependencies: - dependency-name: stripe dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commitfe5d4a0551Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 22 12:34:28 2023 -0400 build(deps-dev): bump sinon from 15.0.4 to 15.1.0 (#14661) Bumps [sinon](https://github.com/sinonjs/sinon) from 15.0.4 to 15.1.0. - [Release notes](https://github.com/sinonjs/sinon/releases) - [Changelog](https://github.com/sinonjs/sinon/blob/main/docs/changelog.md) - [Commits](https://github.com/sinonjs/sinon/compare/v15.0.4...v15.1.0) --- updated-dependencies: - dependency-name: sinon dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commitd02644e21bAuthor: CuriousMagpie <eilatan@gmail.com> Date: Wed May 17 11:36:28 2023 -0400 feat(content): add dinosaur dynasty achievement
135 lines
2.5 KiB
JavaScript
135 lines
2.5 KiB
JavaScript
const ANIMAL_SET_ACHIEVEMENTS = {
|
|
legendaryBestiary: {
|
|
type: 'pet',
|
|
species: [
|
|
'Dragon',
|
|
'FlyingPig',
|
|
'Gryphon',
|
|
'SeaSerpent',
|
|
'Unicorn',
|
|
],
|
|
achievementKey: 'legendaryBestiary',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
birdsOfAFeather: {
|
|
type: 'pet',
|
|
species: [
|
|
'FlyingPig',
|
|
'Owl',
|
|
'Parrot',
|
|
'Pterodactyl',
|
|
'Gryphon',
|
|
'Falcon',
|
|
'Rooster',
|
|
'Peacock',
|
|
],
|
|
achievementKey: 'birdsOfAFeather',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
dinosaurDynasty: {
|
|
type: 'pet',
|
|
species: [
|
|
'Falcon',
|
|
'Owl',
|
|
'Parrot',
|
|
'Peacock',
|
|
'Penguin',
|
|
'Rooster',
|
|
'Pterodactyl',
|
|
'TRex',
|
|
'Triceratops',
|
|
'Velociraptor',
|
|
],
|
|
achievementKey: 'dinosaurDynasty',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
domesticated: {
|
|
type: 'pet',
|
|
species: [
|
|
'Ferret',
|
|
'GuineaPig',
|
|
'Rooster',
|
|
'FlyingPig',
|
|
'Rat',
|
|
'Bunny',
|
|
'Horse',
|
|
'Cow',
|
|
],
|
|
achievementKey: 'domesticated',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
plantParent: {
|
|
type: 'pet',
|
|
species: [
|
|
'Cactus',
|
|
'Treeling',
|
|
],
|
|
achievementKey: 'plantParent',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
polarPro: {
|
|
type: 'pet',
|
|
species: [
|
|
'BearCub',
|
|
'Fox',
|
|
'Penguin',
|
|
'Whale',
|
|
'Wolf',
|
|
],
|
|
achievementKey: 'polarPro',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
reptacularRumble: {
|
|
type: 'pet',
|
|
species: [
|
|
'Alligator',
|
|
'Pterodactyl',
|
|
'Snake',
|
|
'Triceratops',
|
|
'TRex',
|
|
'Turtle',
|
|
'Velociraptor',
|
|
],
|
|
achievementKey: 'reptacularRumble',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
woodlandWizard: {
|
|
type: 'pet',
|
|
species: [
|
|
'Badger',
|
|
'BearCub',
|
|
'Deer',
|
|
'Fox',
|
|
'Frog',
|
|
'Hedgehog',
|
|
'Owl',
|
|
'Snail',
|
|
'Squirrel',
|
|
'Treeling',
|
|
],
|
|
achievementKey: 'woodlandWizard',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
zodiacZookeeper: {
|
|
type: 'pet',
|
|
species: [
|
|
'Rat',
|
|
'Cow',
|
|
'Bunny',
|
|
'Snake',
|
|
'Horse',
|
|
'Sheep',
|
|
'Monkey',
|
|
'Rooster',
|
|
'Wolf',
|
|
'TigerCub',
|
|
'FlyingPig',
|
|
'Dragon',
|
|
],
|
|
achievementKey: 'zodiacZookeeper',
|
|
notificationType: 'ACHIEVEMENT_ANIMAL_SET',
|
|
},
|
|
};
|
|
|
|
export default ANIMAL_SET_ACHIEVEMENTS;
|