UNPKG

@jeremyckahn/farmhand

Version:
27 lines (24 loc) • 552 B
import { crop, fromSeed } from '../crop.js' import { cropType, season } from '../../enums.js' /** * @property farmhand.module:items.peaSeed */ export const peaSeed: farmhand.item = crop({ cropType: cropType.PEA, cropTimeline: [2, 3], growsInto: 'pea', highDemandSeasons: [season.SPRING], id: 'pea-seed', lowDemandSeasons: [season.WINTER], name: 'Pea Seed', tier: 5, }) /** * @property farmhand.module:items.pea */ export const pea: farmhand.item = crop({ ...fromSeed(peaSeed, { canBeFermented: true, }), name: 'Pea', })