mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 07:07:35 +01:00
18 lines
266 B
JavaScript
18 lines
266 B
JavaScript
import {generateEggs} from '../helpers';
|
|
|
|
const DROP_EGGS = [
|
|
'Wolf',
|
|
'TigerCub',
|
|
'PandaCub',
|
|
'LionCub',
|
|
'Fox',
|
|
'FlyingPig',
|
|
'Dragon',
|
|
'Cactus',
|
|
'BearCub',
|
|
];
|
|
|
|
let eggs = generateEggs(DROP_EGGS, {type: 'drop', canBuy: true});
|
|
|
|
export default eggs;
|