feat: continued iteration of first two tabs
This commit is contained in:
parent
d56b1a406e
commit
109db41d96
4 changed files with 78 additions and 16 deletions
|
|
@ -14,6 +14,7 @@ export const state = () => ({
|
|||
worker: 'Shaman',
|
||||
boughtWith: null,
|
||||
produces: currencies.seasons,
|
||||
buyWorkersWith: currencies.months,
|
||||
deviceCount: new Decimal(0),
|
||||
workerCount: new Decimal(0),
|
||||
unlockThreshold: { [currencies.seasons]: 0, tech: null },
|
||||
|
|
@ -23,6 +24,7 @@ export const state = () => ({
|
|||
worker: 'Stonecarver',
|
||||
boughtWith: currencies.seasons,
|
||||
produces: currencies.months,
|
||||
buyWorkersWith: currencies.days,
|
||||
deviceCount: new Decimal(0),
|
||||
workerCount: new Decimal(0),
|
||||
unlockThreshold: { [currencies.seasons]: 1, tech: null },
|
||||
|
|
@ -31,6 +33,7 @@ export const state = () => ({
|
|||
device: 'Astrolabes',
|
||||
worker: 'Mathematician',
|
||||
boughtWith: currencies.months,
|
||||
buyWorkersWith: currencies.hours,
|
||||
produces: currencies.days,
|
||||
deviceCount: new Decimal(0),
|
||||
workerCount: new Decimal(0),
|
||||
|
|
|
|||
Reference in a new issue