Skip to content

Commit

Permalink
Updates for ZNR (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
jshrake authored Sep 19, 2020
1 parent ba875b5 commit 0cdeef5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified data/all_cards.landlord
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "landlord"
version = "0.4.4"
version = "0.4.5"
authors = ["Justin Shrake <justinshrake@gmail.com>"]
description = "Magic: The Gathering card draw and mulligan simulator"
repository = "https://github.com/mtgoncurve/landlord"
Expand Down
7 changes: 7 additions & 0 deletions lib/src/card/card.rs
Original file line number Diff line number Diff line change
Expand Up @@ -657,4 +657,11 @@ mod tests {
assert_eq!(card.is_land(), false);
assert_eq!(card.kind, CardKind::Unknown);
}

#[test]
fn znr_zareth_san() {
let card = card!("Zareth San, the Trickster");
assert_eq!(card.is_land(), false);
assert_eq!(card.kind, CardKind::Unknown);
}
}

0 comments on commit 0cdeef5

Please sign in to comment.