https://github.com/billstclair/agog
AGOG, A Game of Golems, was designed by Christopher St. Clair
https://github.com/billstclair/agog
Last synced: about 2 months ago
JSON representation
AGOG, A Game of Golems, was designed by Christopher St. Clair
- Host: GitHub
- URL: https://github.com/billstclair/agog
- Owner: billstclair
- License: mit
- Created: 2021-07-25T21:34:57.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-06-05T09:28:42.000Z (about 4 years ago)
- Last Synced: 2026-01-20T10:52:52.661Z (5 months ago)
- Language: Elm
- Homepage: https://agog.ninja
- Size: 2.33 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# AGOG: A Game of Golems
AGOG is a two-player board game designed by Christopher St. Clair.
Rules are in [agog-rules.pdf](https://raw.githubusercontent.com/billstclair/agog/main/site/agog-rules.pdf).
## Elm Reactor
The non-networked simulator may be run in Elm Reactor:
```
cd .../agog
elm reactor
```
In another shell, compile the source into `site/elm.js`:
```
cd .../agog
bin/build
```
Then aim your browser at https://localhost:8000/site/index.html
## elm-test
If you install `elm-test`, you can test the JSON encoding/decoding.
Once:
```
cd .../agog
npm install elm-test
```
Test the JSON encoding/decoding:
```
cd .../agog
elm-test
```