Skip to content

Compost » fertilizer? #435

Answered by jeremyckahn
jmmullins asked this question in Q&A
Aug 22, 2023 · 2 comments · 2 replies
Discussion options

You must be logged in to vote

You can turn Compost into Fertilizer once you sell 10 Compost units:

export const fertilizer = itemify({
id: 'fertilizer',
name: 'Fertilizer',
ingredients: {
[compost.id]: 10,
},
condition: state =>
state.purchasedComposter && state.itemsSold[compost.id] >= 10,
description: 'Helps crops grow and mature a little faster.',
enablesFieldMode: fieldMode.FERTILIZE,
recipeType: recipeType.RECYCLING,
type: itemType.FERTILIZER,
value: 25,
})

(Note lines 651 and 652 in particular.)

I realize now that this isn't super obvious. Good call out! Would it help if we …

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by jmmullins
Comment options

You must be logged in to vote
2 replies
@lstebner
Comment options

@jeremyckahn
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants