UNPKG

@jeremyckahn/farmhand

Version:
23 lines (20 loc) 499 B
import { crop, fromSeed } from '../crop.js' import { cropType } from '../../enums.js' /** * @property farmhand.module:items.sugarcaneSeed */ export const sugarcaneSeed: farmhand.item = crop({ cropType: cropType.SUGARCANE, cropTimeline: [2, 2, 3], growsInto: 'sugarcane', id: 'sugarcane-seed', name: 'Sugarcane Seed', tier: 7, }) /** * @property farmhand.module:items.sugarcane */ export const sugarcane: farmhand.item = crop({ ...fromSeed(sugarcaneSeed), name: 'Sugarcane', })