Revert "allow eggs to have a release date"

This reverts commit 6d13a257dd.
This commit is contained in:
Phillip Thelen
2024-06-11 18:19:11 +02:00
parent 544d67e7e5
commit b83f62bd82
11 changed files with 97 additions and 153 deletions

View File

@@ -1,10 +1,10 @@
import allEggs from '../content/eggs';
import allPotions from '../content/hatching-potions';
import { drops as eggs } from '../content/eggs';
import { drops as hatchingPotions } from '../content/hatching-potions';
import randomVal from '../libs/randomVal';
export default function firstDrops (user) {
const eggDrop = randomVal(allEggs.drops);
const potionDrop = randomVal(allPotions.drops);
const eggDrop = randomVal(eggs);
const potionDrop = randomVal(hatchingPotions);
user.items.eggs = {
...user.items.eggs,