mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
Change tribal card type to kindred, update viashino and naga (#12271)
* change tribal card type to kindred * update viashino to lizard * update naga to snake
This commit is contained in:
parent
40a1fc6c23
commit
cdf91e66fb
177 changed files with 200 additions and 213 deletions
|
|
@ -638,7 +638,7 @@ public class PhantasmalImageTest extends CardTestPlayerBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
public void testAnimatedTribal() {
|
||||
public void testAnimatedKindred() {
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Cloak and Dagger");
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Island", 4);
|
||||
addCard(Zone.HAND, playerA, "Karn's Touch");
|
||||
|
|
@ -654,7 +654,7 @@ public class PhantasmalImageTest extends CardTestPlayerBase {
|
|||
|
||||
Permanent cloakA = getPermanent("Cloak and Dagger", playerA);
|
||||
assertTrue("Phantasmal Image should be an artifact", cloakA.isArtifact(currentGame));
|
||||
assertTrue("Phantasmal Image should be tribal", cloakA.isTribal(currentGame));
|
||||
assertTrue("Phantasmal Image should be kindred", cloakA.isKindred(currentGame));
|
||||
assertTrue("Phantasmal Image should not be a creature", !cloakA.isCreature(currentGame));
|
||||
assertTrue("Phantasmal Image should be a Rogue", cloakA.hasSubtype(SubType.ROGUE, currentGame));
|
||||
assertTrue("Phantasmal Image should be an Illusion", cloakA.hasSubtype(SubType.ILLUSION, currentGame));
|
||||
|
|
@ -664,7 +664,7 @@ public class PhantasmalImageTest extends CardTestPlayerBase {
|
|||
Permanent cloakB = getPermanent("Cloak and Dagger", playerB);
|
||||
assertTrue("Cloak and Dagger should be an artifact", cloakB.isArtifact(currentGame));
|
||||
assertTrue("Cloak and Dagger should be a creature", cloakB.isCreature(currentGame));
|
||||
assertTrue("Cloak and Dagger should be tribal", cloakB.isTribal(currentGame));
|
||||
assertTrue("Cloak and Dagger should be kindred", cloakB.isKindred(currentGame));
|
||||
assertTrue("Cloak and Dagger should be a Rogue", cloakB.hasSubtype(SubType.ROGUE, currentGame));
|
||||
assertTrue("Cloak and Dagger should be an Equipment", cloakB.hasSubtype(SubType.EQUIPMENT, currentGame));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ public class OneWithTheStarsTest extends CardTestPlayerBase {
|
|||
execute();
|
||||
|
||||
assertType(blossom, CardType.ENCHANTMENT, true);
|
||||
assertType(blossom, CardType.TRIBAL, false);
|
||||
assertType(blossom, CardType.KINDRED, false);
|
||||
assertNotSubtype(blossom, SubType.FAERIE);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue