@jeremyckahn/farmhand
Version:
A farming game
25 lines (22 loc) • 489 B
text/typescript
import { crop, fromSeed } from '../crop.js'
import { cropType } from '../../enums.js'
/**
* @property farmhand.module:items.oliveSeed
*/
export const oliveSeed: farmhand.item = crop({
cropType: cropType.OLIVE,
cropTimeline: [3, 6],
growsInto: 'olive',
id: 'olive-seed',
name: 'Olive Seed',
tier: 6,
})
/**
* @property farmhand.module:items.olive
*/
export const olive: farmhand.item = crop({
...fromSeed(oliveSeed, {
canBeFermented: true,
}),
name: 'Olive',
})