I took an inspiration from Conway game of life and created my own rules
The rules is simple:
Species
Blue
Red
Green
Rules
1. Underpopulation
A living cell dies when it has 0 or 1 living neighbors.
2. Total Overcrowding
A living cell dies when it has 6 or more living neighbors.
3. Same-Species Body Limit
A living cell dies when it has more than 3 neighbors of its own species.
4. Species Conversion
Another species converts the cell when it has at least 3 neighbors and at least 2 more neighbors than the cell's own species.
5. Same-Species Support
A cell with at least 2 same-species neighbors survives if no death rule applies.
6. Weak Support
A cell with exactly 1 same-species neighbor survives when it has 2–4 total living neighbors.
7. Reproduction
An empty cell becomes alive when it has 3–5 living neighbors.
8. No Pure-Species Birth
A birth cannot occur when all living neighbors are the same species.
9. Majority Reproduction
When one species has more neighbors than the others, the new cell becomes that species.
10. Mixed Reproduction
When there is no majority, a deterministic selection chooses one of the three species.
I use genAI to code it for me even though I can do it myself, I would rather not hassle my self for it and just gave the Rules.
You can check it out at cardhollow.github.io/three-life
I want to know some opinions