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