Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 747 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 747 Bytes

game-of-life-protector

Note: This game has been semi abandoned. I may resume work on it in the future.

A game based on Conway's game of life, where the objective is to keep the 4 blocks in the center alive.

Rules:

  1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  2. Any live cell with two or three live neighbours lives on to the next generation.
  3. Any live cell with more than three live neighbours dies, as if by over-population.
  4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Each generation you can alter the state of 1 block. If any of the 4 central blocks die you lose! Each generation that pases earns you 1 point.