UNPKG

@jeremyckahn/farmhand

Version:
12 lines (9 loc) 356 B
import { shouldPrecipitateToday } from '../../utils/index.js' import { applyChanceEvent } from './helpers.js' import { applyPrecipitation } from './applyPrecipitation.js' /** * @param {farmhand.state} state * @returns {farmhand.state} */ export const processWeather = state => applyChanceEvent([[shouldPrecipitateToday, applyPrecipitation]], state)