hathora-et-labora-game
Version:
Plays Uwe Rosenberg's Ora et Labora for the Hathora engine. It reduces a list of moves into a board game state.
14 lines (11 loc) • 473 B
text/typescript
import { always, curry } from 'ramda'
import { match } from 'ts-pattern'
import { getCost, withActivePlayer } from '../board/player'
import { GameStatePlaying } from '../types'
export const cloisterChapterHouse = () =>
withActivePlayer(getCost({ clay: 1, wood: 1, peat: 1, sheep: 1, grain: 1, penny: 1 }))
export const complete = curry((partial: string[], _state: GameStatePlaying): string[] =>
match(partial)
.with([], always(['']))
.otherwise(always([]))
)