mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
17 lines
449 B
JavaScript
17 lines
449 B
JavaScript
import notifications from './notifications';
|
|
|
|
export default {
|
|
mixins: [notifications],
|
|
methods: {
|
|
closeHatchPetDialog () {
|
|
this.$root.$emit('bv::hide::modal', 'hatching-modal');
|
|
},
|
|
hatchPet (pet) {
|
|
this.closeHatchPetDialog();
|
|
|
|
this.$store.dispatch('common:hatch', {egg: pet.eggKey, hatchingPotion: pet.potionKey});
|
|
this.text(this.$t('hatchedPet', {egg: pet.eggName, potion: pet.potionName}));
|
|
},
|
|
},
|
|
};
|