Skip to content

Commit

Permalink
mtgmatcher: Better decouple a reprint from both SPL and PF19
Browse files Browse the repository at this point in the history
  • Loading branch information
kodawah committed Aug 23, 2024
1 parent 0813008 commit 16fbc9d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions mtgmatcher/filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,21 @@ func filterPrintings(inCard *InputCard, editions []string) (printings []string)
}
switch {
case strings.HasPrefix(set.Name, "MagicFest "+maybeYear):
switch inCard.Name {
case "Lightning Bolt":
if !inCard.Contains("Fest") {
continue
}
}
case set.Code == "PLG21":
case set.Code == "PEWK":
case set.Code == "SLP":
switch inCard.Name {
case "Lightning Bolt":
if !inCard.Contains("Secret") {
continue
}
}
default:
continue
}
Expand Down

0 comments on commit 16fbc9d

Please sign in to comment.