@jeremyckahn/farmhand
Version:
A farming game
16 lines (13 loc) • 463 B
text/typescript
import { cowColors } from '../enums.js'
const cowColorToIdMap: Record<farmhand.cowColors, string> = {
[]: 'blue',
[]: 'brown',
[]: 'green',
[]: 'orange',
[]: 'purple',
[]: 'rainbow',
[]: 'white',
[]: 'yellow',
}
export const getCowColorId = ({ color }: { color: farmhand.cowColors }) =>
`${cowColorToIdMap[color]}-cow`