Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Humans should start with [`README.md`](README.md) and [`CONTRIBUTING.md`](CONTRI

## Project overview

mundane-backend is *Magic: The Gathering without the magic* — a turn-based game **engine** plus a
mundane-backend is *No dragons. No spells. Just Tuesday.* — a turn-based game **engine** plus a
thin **HTTP API**. The engine is a referee: a whole game is a fold over a stream of *actions*, and
one function, `apply_action(state, action)`, validates each action against the current state and
then transitions it. The API is a thin shell that translates HTTP requests into engine actions; all
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# mundane

Magic: The Gathering without the, you know, magic.
No dragons. No spells. Just Tuesday.

Two households face off. The engine is a **referee**: a whole game is a fold over a stream of
*actions*, and one function — `apply_action(state, action)` — validates each action against the
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Mundane Backend
===============

*Magic: The Gathering without the, you know, magic.*
*No dragons. No spells. Just Tuesday.*

This is the reference implementation of `Mundane <https://github.com/letsbuilda/mundane>`_: a rules
**engine** and a thin HTTP **API** over it. The engine is a referee, not a player — a whole game is a
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "mundane"
version = "0.1.0"
description = "Magic: The Gathering without the, you know, magic"
description = "No dragons. No spells. Just Tuesday."
authors = [
{ name = "Bradley Reynolds", email = "bradley.reynolds@tailstory.dev" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/mundane/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
"""Magic: The Gathering without the, you know, magic."""
"""No dragons. No spells. Just Tuesday."""
Loading