
The Basic Egg Shop.
The Basic Egg Shop is a shop located next to the Sunflower Field and behind an Instant Converter. It sells Basic Eggs for increasing amounts of honey.
The cost begins at 1,000 honey and increases exponentially (see Formula section below), eventually capping off at 10,000,000 honey for the 22nd egg and beyond.
![]() |
![]() |
---|---|
1 | 1,000 |
2 | 2,500 |
3 | 4,250 |
4 | 6,708 |
5 | 10,313 |
6 | 15,669 |
7 | 23,670 |
8 | 35,648 |
9 | 53,596 |
10 | 80,506 |
11 | 120,858 |
12 | 181,378 |
13 | 272,151 |
14 | 408,304 |
15 | 612,527 |
16 | 918,857 |
17 | 1,378,348 |
18 | 2,067,580 |
19 | 3,101,426 |
20 | 4,652,191 |
21 | 6,978,337 |
22+ | 10,000,000 |
Formula[]
The cost of egg number N is calculated as follows:
base = 1000 cost = base i = 0 while i < N-1 do cost = 1.5*cost + base/(i+1) i = i + 1 end
This comes out roughly exponential, but there isn't a "nice neat numbers" exponential formula.
Base = 1000 t = Base i = 0 NN = 21 For [i=0; t= Base, i < NN, i++, t=1.5*t+Base/(i+1);{Print[Floor[t+0.5]]}]
This does not work for Term 22, as the price caps out at 10,000,000 honey.
Trivia[]
- The Basic Egg Shop and stacking the Round Basic Bee sticker are the only ways to obtain a
Basic Egg, other than the one given to the player at the start of the game.