mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
finised all creaturetypes
This commit is contained in:
parent
19db21c672
commit
8ab4f5b454
206 changed files with 641 additions and 375 deletions
|
|
@ -1,6 +1,7 @@
|
|||
package org.mage.test.multiplayer;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterLandPermanent;
|
||||
|
|
@ -35,7 +36,7 @@ public class SimpleGameTest extends CardTestMultiPlayerBase {
|
|||
assertLife(playerD, 20);
|
||||
|
||||
FilterPermanent filterPermanent = new FilterLandPermanent();
|
||||
filterPermanent.add(new SubtypePredicate("Forest"));
|
||||
filterPermanent.add(new SubtypePredicate(SubType.FOREST));
|
||||
List<Permanent> forestCards = currentGame.getBattlefield().getAllActivePermanents(filterPermanent, currentGame);
|
||||
Assert.assertEquals(4, forestCards.size());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue