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:
Evan Kranzler 2024-06-08 13:55:52 -04:00 committed by GitHub
parent 40a1fc6c23
commit cdf91e66fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
177 changed files with 200 additions and 213 deletions

View file

@ -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));
}

View file

@ -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);
}
}