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.
6 lines (5 loc) • 411 B
TypeScript
import { ErectionEnum, LandEnum, StateReducer } from '../types';
export declare const terrainForErection: (erection: ErectionEnum) => LandEnum[];
export declare const addErectionAtLandscape: (row: number, col: number, erection: ErectionEnum) => StateReducer;
export declare const pointsForBuilding: (building: ErectionEnum) => number;
export declare const pointsForDwelling: (building: ErectionEnum) => number;