feat(content): Veggie Hatching Potions

This commit is contained in:
Sabe Jones
2019-03-26 15:45:29 -05:00
parent 33c639e28b
commit 1195560b0c
10 changed files with 52 additions and 5 deletions

View File

@@ -98,7 +98,7 @@
@click="selectPet(context.item)"
)
.btn.btn-flat.btn-show-more(@click="setShowMore(petGroup.key)", v-if='petGroup.key !== "specialPets"')
.btn.btn-flat.btn-show-more(@click="setShowMore(petGroup.key)", v-if='petGroup.key !== "specialPets" && petGroup.key !== "wackyPets"')
| {{ $_openedItemRows_isToggled(petGroup.key) ? $t('showLess') : $t('showMore') }}
h2
@@ -462,6 +462,14 @@
potions: this.content.dropHatchingPotions,
},
},
{
label: this.$t('filterByWacky'),
key: 'wackyPets',
petSource: {
eggs: this.content.dropEggs,
potions: this.content.wackyHatchingPotions,
},
},
{
label: this.$t('special'),
key: 'specialPets',