feat: mission status tracks actual currency and requirements from the vuex store.
This commit is contained in:
parent
4bbdb03263
commit
6d9486763b
2 changed files with 6 additions and 4 deletions
|
|
@ -107,7 +107,7 @@ export const state = () => ({
|
|||
name: 'Create the Time Machine',
|
||||
description: 'Soon you will be able to control time itself.',
|
||||
completionCriteria: {
|
||||
cost: 1000,
|
||||
cost: 50000,
|
||||
},
|
||||
available: true,
|
||||
viewed: false,
|
||||
|
|
@ -122,7 +122,9 @@ export const state = () => ({
|
|||
appearanceCriteria: {
|
||||
age: 100,
|
||||
},
|
||||
completionCriteria: null,
|
||||
completionCriteria: {
|
||||
cost: 150000,
|
||||
},
|
||||
available: true,
|
||||
viewed: false,
|
||||
complete: false,
|
||||
|
|
|
|||
Reference in a new issue