@jeremyckahn/farmhand
Version:
A farming game
18 lines (15 loc) • 400 B
text/typescript
import { itemType } from '../../enums.js'
import { IRON_SPAWN_CHANCE } from '../../constants.js'
const { freeze } = Object
/**
* @property farmhand.module:items.ironOre
*/
export const ironOre: farmhand.item = freeze({
description: 'A piece of iron ore.',
doesPriceFluctuate: true,
id: 'iron-ore',
name: 'Iron Ore',
type: itemType.ORE,
value: 40,
spawnChance: IRON_SPAWN_CHANCE,
})