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