UNPKG

hathora-et-labora-game

Version:

Game logic reducer for Uwe Rosenberg's Ora et Labora

6 lines (5 loc) 411 B
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;