import {merge} from '../helpers'; //-------------------------------------------------- // Eggs are generated from an array of pet keys // // : { // text: t(EggText), // mountText: t(EggMountText), // notes: t(EggText,{ // eggText: this.text, // eggAdjective: t(EggAdjective) // }), // canBuy: , // value: 3, // key: , // } // // is the name of the pet associated with the egg // is the type of egg (drop, quest, etc) passed in as part of an options object // is a boolean passed in as part of an options object //-------------------------------------------------- import dropEggs from './drops'; import questEggs from './quest'; let allEggs = merge([dropEggs, questEggs]); export default { allEggs: allEggs, dropEggs: dropEggs, questEggs: questEggs, }