@jeremyckahn/farmhand
Version:
A farming game
25 lines (20 loc) • 564 B
JavaScript
import { moneyTotal } from '../../utils/index.js'
import { PURCHASEABLE_COMBINES } from '../../constants.js'
/**
* @param {farmhand.state} state
* @param {number} combineId
* @returns {farmhand.state}
*/
export const purchaseCombine = (state, combineId) => {
const { money, purchasedCombine } = state
if (purchasedCombine >= combineId) {
return state
}
const combine = PURCHASEABLE_COMBINES.get(combineId)
const price = combine?.price || 0
return {
...state,
purchasedCombine: combineId,
money: moneyTotal(money, -price),
}
}