From 221f21931ad3c318cf7292b478ae15268c2b2fc9 Mon Sep 17 00:00:00 2001 From: Shaun Kerr Date: Mon, 20 May 2019 10:45:45 +1200 Subject: [PATCH] readme --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7528a74 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# EVAC + +tA's Rules Engine for the Neon Genesis Evangelion Trading Card Game. + +## Getting Started + +Currently only runs in GHCI + +``` +:load Connect.hs Print.hs Init.hs +import Print +import Init +``` + +To print the representation of the initial board state +``` +printState initBS +``` + +`conHurt` and `conAttract` are currently the only implemented mechanics +``` +printState $ conAttract Shinji Asuka initBS +printState $ conHurt Asuka Gendo $ conAttract Shinji Asuka initBS +``` + +### Dependencies + +`Data.List` and `Data.Either` + +## Authors + +* **Shaun Kerr** - [tA](https://git.lain.church/tA)