Skip to content

Commit

Permalink
FDN Update (#60)
Browse files Browse the repository at this point in the history
* DKS update

* after make card-update

* Update card.rs

typo in smoky lounge name

* Update card.rs

I have no idea what I have failed in the test, and hope blindly that the split card was it. Probably this will still fail, and I will just wait and see what the real issue is, to be discovered by somebody who actually knows what they're doing.

* FDN update
  • Loading branch information
rstad authored Nov 16, 2024
1 parent 6fc30c2 commit 413b623
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 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 = "2024.9.0"
version = "2024.11.0"
authors = ["Justin Shrake <justinshrake@gmail.com>"]
description = "Magic: The Gathering card draw and mulligan simulator"
repository = "https://github.com/mtgoncurve/landlord"
Expand Down
12 changes: 12 additions & 0 deletions lib/src/card/card.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1153,4 +1153,16 @@ mod tests {
let card = card!("Valgavoth's Lair");
assert_eq!(card.is_land(), true);
}

#[test]
fn fdn_card_1() {
let card = card!("Sire of Seven Deaths");
assert_eq!(card.is_land(), false);
}

#[test]
fn fdn_card_2() {
let card = card!("Soulstone Sanctuary");
assert_eq!(card.is_land(), true);
}
}

0 comments on commit 413b623

Please sign in to comment.