Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 885 Bytes

HexagonalBoard.md

File metadata and controls

31 lines (20 loc) · 885 Bytes

Hexagonal Board

Summary:

Board uses a hexagonal grid instead of a square grid.

Details:

  1. The grid is arranged as hexagons, with each cell having 6 neighbors.
  2. Each Cell also has 6 second-level neighbors, that follow the spokes of the grid.
    1. These only count 30% as much (0.3 per neighbor)
  3. Death
    1. Starvation occurs below 2.0
    2. Overpopulation occurs above 3.3
  4. Birth
    1. Birth occurs between [2.3 - 2.9] inclusive.

note: The layout of the hexagons can be have a flat or pointy orientation. It doesn't matter which you use, as long as it is consistent throughout.

image

Resources

Example Repo's


Main List