[MKM] Implement Detective's Satchel

This commit is contained in:
theelk801 2024-01-26 21:26:53 -05:00
parent bd0e9ef110
commit 8f4a920888
3 changed files with 49 additions and 0 deletions

View file

@ -27,4 +27,9 @@ public enum SacrificedArtifactThisTurnCondition implements Condition {
.stream()
.anyMatch(permanent -> permanent.isArtifact(game));
}
@Override
public String toString() {
return "you've sacrificed an artifact this turn";
}
}