I created this remake as a high school project. It's developed in plain TypeScript.
"Kulki" (ang. "Balls") is a Polish single player logic game. The objective of the game is to remove the titular colored balls from a 9x9 grid. The balls are removed when a row of five or more balls of the same color is formed horizontally, vertically, or diagonally. In each move, three new balls appear randomly on the grid. The color and placement of the new balls are also random. New balls do not appear after a move that results in the removal of a row of balls. The game ends when all the grid spaces are filled with balls and no more moves can be made.
- Open git bash and run
git clone https://github.com/lythx/kulki.git
OR go to the project main page, click the green button that says "Code", then click "Download ZIP" and extract the downloaded directory. - Install Node (needed for npm).
- Open Command Prompt and run
npm install -g typescript
to install TypeScript. - Go into the main project directory and run
npx tsc
to build the project. - Run the index.html file from the main directory on a local server.
EXAMPLE SIMPLE LOCAL SERVER USING VSCODE:- Drag the directory into Visual Studio Code
- Download the Live Server extension
- Hit ctrl+shift+p, select
>Live Server: Change Live Server workspace
and choosekulki
- Hit ctrl+shift+p again, select
>Live Server: Open with Live Server
- Click the following link: http://localhost:5500