2022-01-07 21:10:23 +00:00
|
|
|
import Decimal from 'break_infinity.js'
|
2022-01-07 22:28:21 +00:00
|
|
|
import Vue from 'vue'
|
2022-01-07 21:10:23 +00:00
|
|
|
|
2022-01-07 01:17:26 +00:00
|
|
|
export const state = () => ({
|
|
|
|
activeTabIndex: 0,
|
|
|
|
tabs: [
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/',
|
|
|
|
label: 'fas fa-clock',
|
|
|
|
title: 'Timekeeping Instruments',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'yellow-600',
|
|
|
|
lightColor: 'yellow-200',
|
2022-01-08 20:45:07 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/apprentices',
|
|
|
|
label: 'fas fa-user-friends',
|
|
|
|
title: 'Apprentices',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'blue-600',
|
|
|
|
lightColor: 'blue-200',
|
2022-01-08 20:45:07 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/missions',
|
|
|
|
label: 'fas fa-th-list',
|
2022-01-08 03:46:33 +00:00
|
|
|
title: 'Missions',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'violet-600',
|
|
|
|
lightColor: 'violet-200',
|
2022-01-08 23:42:22 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/timemachine',
|
|
|
|
label: 'fas fa-fast-forward',
|
2022-01-08 03:46:33 +00:00
|
|
|
title: 'Time Machine',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'lime-600',
|
|
|
|
lightColor: 'lime-200',
|
2022-01-08 23:42:22 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/timemagic',
|
|
|
|
label: 'fas fa-eye',
|
2022-01-08 03:46:33 +00:00
|
|
|
title: 'Time Magic',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'orange-600',
|
|
|
|
lightColor: 'orange-200',
|
2022-01-08 23:42:22 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
{
|
2022-01-08 23:42:22 +00:00
|
|
|
route: '/wisdom',
|
|
|
|
label: 'fas fa-book-open',
|
|
|
|
title: 'Wisdom',
|
2022-01-07 01:17:26 +00:00
|
|
|
darkColor: 'teal-600',
|
|
|
|
lightColor: 'teal-200',
|
2022-01-08 23:42:22 +00:00
|
|
|
locked: false,
|
2022-01-07 01:17:26 +00:00
|
|
|
},
|
|
|
|
],
|
2022-01-07 21:10:23 +00:00
|
|
|
currency: new Decimal(0),
|
|
|
|
currencyTotal: new Decimal(0),
|
|
|
|
processes: [
|
|
|
|
{
|
2022-01-07 22:28:21 +00:00
|
|
|
instrument: 'Star Chart',
|
2022-01-07 21:10:23 +00:00
|
|
|
worker: 'Shaman',
|
|
|
|
deviceCount: new Decimal(0),
|
|
|
|
workerCount: 0,
|
2022-01-07 22:28:21 +00:00
|
|
|
completion: 0,
|
2022-01-07 21:10:23 +00:00
|
|
|
unlockThreshold: { tech: null, currency: 0 },
|
|
|
|
},
|
|
|
|
{
|
2022-01-07 22:28:21 +00:00
|
|
|
instrument: 'Stone Calendar',
|
2022-01-07 21:10:23 +00:00
|
|
|
worker: 'Stonecarver',
|
|
|
|
deviceCount: new Decimal(0),
|
|
|
|
workerCount: 0,
|
2022-01-07 22:28:21 +00:00
|
|
|
completion: 0,
|
2022-01-07 21:10:23 +00:00
|
|
|
unlockThreshold: { tech: null, currency: 10000 },
|
|
|
|
},
|
|
|
|
{
|
2022-01-07 22:28:21 +00:00
|
|
|
instrument: 'Astrolabes',
|
2022-01-07 21:10:23 +00:00
|
|
|
worker: 'Mathematician',
|
|
|
|
deviceCount: new Decimal(0),
|
|
|
|
workerCount: 0,
|
2022-01-07 22:28:21 +00:00
|
|
|
completion: 0,
|
2022-01-07 21:10:23 +00:00
|
|
|
unlockThreshold: { tech: 0, currency: new Decimal(10e5) },
|
|
|
|
},
|
|
|
|
],
|
|
|
|
|
|
|
|
upgrades: [
|
|
|
|
{
|
|
|
|
name: 'Mathematics',
|
|
|
|
price: 100,
|
|
|
|
purchased: false,
|
|
|
|
},
|
|
|
|
],
|
2022-01-08 03:46:33 +00:00
|
|
|
|
|
|
|
missions: [
|
|
|
|
{
|
|
|
|
name: 'Create the Time Machine',
|
|
|
|
description: 'Soon you will be able to control time itself.',
|
|
|
|
completionCriteria: {
|
|
|
|
cost: 1000,
|
|
|
|
},
|
|
|
|
available: true,
|
|
|
|
viewed: false,
|
|
|
|
complete: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Time To Cheat Death',
|
|
|
|
description:
|
|
|
|
'Your body seems to be failing you. ' +
|
|
|
|
'Write a book to pass your knowedge to your younger self through the time machine. ' +
|
|
|
|
"Now where's your pen...",
|
|
|
|
appearanceCriteria: {
|
|
|
|
age: 100,
|
|
|
|
},
|
|
|
|
completionCriteria: null,
|
|
|
|
available: true,
|
|
|
|
viewed: false,
|
|
|
|
complete: false,
|
|
|
|
},
|
|
|
|
],
|
2022-01-07 01:17:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
export const getters = {
|
|
|
|
activeTab: (state) => {
|
|
|
|
return state.tabs[state.activeTabIndex]
|
|
|
|
},
|
|
|
|
activeColorClasses: (state) => (index) => {
|
|
|
|
const { darkColor, lightColor } = state.tabs[index]
|
|
|
|
return `bg-${lightColor} text-${darkColor}`
|
|
|
|
},
|
|
|
|
inactiveColorClasses: (state) => (index) => {
|
|
|
|
const { darkColor, lightColor } = state.tabs[index]
|
|
|
|
return `bg-${darkColor} text-${lightColor}`
|
|
|
|
},
|
|
|
|
activeTabColorClasses: (state, getters) => {
|
|
|
|
return getters.activeColorClasses(state.activeTabIndex)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
export const mutations = {
|
|
|
|
setActiveTab: (state, index) => {
|
2022-01-08 20:45:07 +00:00
|
|
|
if (state.tabs[index].locked) return
|
2022-01-07 01:17:26 +00:00
|
|
|
state.activeTabIndex = index
|
|
|
|
},
|
2022-01-07 21:10:23 +00:00
|
|
|
addCurrency: (state, value) => {
|
|
|
|
state.currency = Decimal.add(state.currency, value)
|
|
|
|
state.currencyTotal = Decimal.add(state.currencyTotal, value)
|
|
|
|
},
|
|
|
|
spendCurrency: (state, value) => {
|
|
|
|
value = Decimal.mul(value, -1)
|
|
|
|
state.currency = Decimal.add(state.currency, value)
|
2022-01-07 21:19:21 +00:00
|
|
|
},
|
2022-01-07 22:28:21 +00:00
|
|
|
setProcessCompletion: (state, { processIndex, value }) => {
|
|
|
|
Vue.set(state.processes[processIndex], 'completion', value)
|
|
|
|
},
|
2022-01-08 03:46:33 +00:00
|
|
|
setMissionAvailable: (state, missionIndex) => {
|
|
|
|
Vue.set(state.missions[missionIndex], 'available', true)
|
|
|
|
},
|
|
|
|
setMissionViewed: (state, missionIndex) => {
|
|
|
|
Vue.set(state.missions[missionIndex], 'viewed', true)
|
|
|
|
},
|
|
|
|
completeMission: (state, missionIndex) => {
|
|
|
|
state.missions[missionIndex].complete = true
|
|
|
|
},
|
2022-01-07 01:17:26 +00:00
|
|
|
}
|