Kutyagumi
About
A two-player game about cells and taking over the world!
Where to play
The web version of the game is available to play here, or on itch.io (v1.0.0).
A native Java version is available here.
You can also build it yourself!
Online Multiplayer
Web
To host a game, add ?host=
To join a game, add ?join=
For example, to play with a friend, pick a suitable game ID. eutro will be used in this example.
- Navigate to https://eutropius225.github.io/kutyagumi/index.html?host=eutro
- Tell your friend to go to https://eutropius225.github.io/kutyagumi/index.html?join=eutro
To rematch, the host needs to refresh first, then the other party can do the same to join.
Jar
To host a game, run with the arguments host
To join a game, run with the arguments join
How to play
Overview
There are two colonies of cells (), red and green, fighting for territory.
Your objective is to seize more of the board than your opponent.
Placement
Cells can be placed adjacent (up, down, left or right) to other cells of their colour, provided there is no wall () between them.
To place a cell, click a suitable place on the board when it is your turn.
Note that the background colour reflects whose turn it is.
When an area can only be reached by one player, for example if it is closed off, it will automatically be claimed by that player.
Pieces
Cells
Cells are your pieces. Have more of them than your opponent to win.
Running totals are shown in the top left and right corners:
Walls
Walls are solid things that cannot be placed through.
Boosters
Boosters let you place again after you place a cell on them.
Building
To build this project, you'll need the Clojure CLI tool:
https://clojure.org/guides/deps_and_cli
To develop in a browser with live code reloading:
clj -A:devTo build a release version for the web:
clj -A:prod:play-cljcTo develop the native version:
clj -A:dev native # NOTE: On Mac OS, you need to add the macos alias: clj -A:dev:macos nativeTo build the native version as a jar file:
clj -A:prod uberjar