@jeremyckahn/farmhand
Version:
A farming game
25 lines (22 loc) • 535 B
text/typescript
import { crop, fromSeed } from '../crop.js'
import { cropType } from '../../enums.js'
/**
* @property farmhand.module:items.asparagusSeed
*/
export const asparagusSeed: farmhand.item = crop({
cropType: cropType.ASPARAGUS,
cropTimeline: [4, 2, 2, 1],
growsInto: 'asparagus',
id: 'asparagus-seed',
name: 'Asparagus Seed',
tier: 4,
})
/**
* @property farmhand.module:items.asparagus
*/
export const asparagus: farmhand.item = crop({
...fromSeed(asparagusSeed, {
canBeFermented: true,
}),
name: 'Asparagus',
})