UNPKG

@jeremyckahn/farmhand

Version:
27 lines (24 loc) 535 B
import { crop, fromSeed } from '../crop.js' import { cropType } from '../../enums.js' /** * @property farmhand.module:items.tomatoSeed * @type {farmhand.item} */ export const tomatoSeed = crop({ cropType: cropType.TOMATO, cropTimeline: [2, 1, 1, 1, 2, 2, 2], growsInto: 'tomato', id: 'tomato-seed', name: 'Tomato Seeds', tier: 3, }) /** * @property farmhand.module:items.tomato * @type {farmhand.item} */ export const tomato = crop({ ...fromSeed(tomatoSeed, { canBeFermented: true, }), name: 'Tomato', })