mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Also add exception for NDFC land backs in verifier
This commit is contained in:
parent
220b87eaff
commit
27a46a57db
1 changed files with 7 additions and 0 deletions
|
|
@ -2624,6 +2624,13 @@ public class VerifyCardDataTest {
|
|||
return;
|
||||
}
|
||||
|
||||
// lands on back of NDFCs *may* have only one ability
|
||||
if (card instanceof TransformingDoubleFacedCardHalf
|
||||
&& ((DoubleFacedCardHalf)card).isBackSide()
|
||||
&& card.isLand()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// additional cost go to 1 ability
|
||||
if (refLowerText.startsWith("as an additional cost to cast")) {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue