aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2025-08-15 21:35:08 +0200
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:57:38 +0200
commit5d0b3ee308cd4ef93eeacc90da215cffa856d9e8 (patch)
tree96e1f375471d21fd3b25abb93e84956b303407b4
parent488f6377e6f6fd3099bb927a986d548fbc1eb63f (diff)
downloadmuhqs-game-5d0b3ee308cd4ef93eeacc90da215cffa856d9e8.tar.gz
muhqs-game-5d0b3ee308cd4ef93eeacc90da215cffa856d9e8.zip
note that replacement effects are missing
-rw-r--r--README.md1
-rw-r--r--go/game/cardImplementations.go1
2 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 69d664c9..b74c6334 100644
--- a/README.md
+++ b/README.md
@@ -124,3 +124,4 @@ Things that should be done eventually:
- [ ] tyrant
- [ ] finish error handling for remote PlayerControls
- [ ] support big card grids (for sealed)
+- [ ] implement replacement effects
diff --git a/go/game/cardImplementations.go b/go/game/cardImplementations.go
index dcd11808..bfda63ed 100644
--- a/go/game/cardImplementations.go
+++ b/go/game/cardImplementations.go
@@ -227,6 +227,7 @@ func (i *maceImpl) onUnpile(p Permanent) {
type poisonDaggerImpl struct{ cardImplementationBase }
func (*poisonDaggerImpl) onPile(p Permanent) {
+ // FIXME: implement replacement effects
}
func (*poisonDaggerImpl) onUnpile(p Permanent) {