UNPKG

@jeremyckahn/farmhand

Version:
27 lines (24 loc) 514 B
import { crop, fromSeed } from '../crop.js' import { cropType } from '../../enums.js' /** * @property farmhand.module:items.cornSeed * @type {farmhand.item} */ export const cornSeed = crop({ cropType: cropType.CORN, cropTimeline: [3, 1, 1, 1, 2, 2], growsInto: 'corn', id: 'corn-seed', name: 'Corn Kernels', tier: 2, }) /** * @property farmhand.module:items.corn * @type {farmhand.item} */ export const corn = crop({ ...fromSeed(cornSeed, { canBeFermented: true, }), name: 'Corn', })