@jeremyckahn/farmhand
Version:
A farming game
18 lines (15 loc) • 418 B
text/typescript
import { itemType } from '../../enums.js'
import { SALT_ROCK_SPAWN_CHANCE } from '../../constants.js'
const { freeze } = Object
/**
* @property farmhand.module:items.saltRock
*/
export const saltRock: farmhand.item = freeze({
description: 'A large chunk of salt.',
doesPriceFluctuate: true,
id: 'salt-rock',
name: 'Salt Rock',
spawnChance: SALT_ROCK_SPAWN_CHANCE,
type: itemType.STONE,
value: 10,
})