1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-04 09:16:04 -09:00

Reverting gideon change (no more CDA). added junit test demonstrating issue

This commit is contained in:
drmDev 2016-07-13 05:27:32 -04:00
parent 8ded1981fb
commit 0670b24f22
2 changed files with 27 additions and 1 deletions
Mage.Sets/src/mage/sets/gatecrash
Mage.Tests/src/test/java/org/mage/test/cards/planeswalker

View file

@ -74,7 +74,7 @@ public class GideonChampionOfJustice extends CardImpl {
this.addAbility(ability1);
// 0: Until end of turn, Gideon becomes an indestructible Human Soldier creature with power and toughness each equal to the number of loyalty counters on him. He's still a planeswalker. Prevent all damage that would be dealt to him this turn.
LoyaltyAbility ability2 = new LoyaltyAbility(new BecomesCreatureSourceEffect(new GideonChampionOfJusticeToken(), "planeswalker", Duration.EndOfTurn, false, true), 0);
LoyaltyAbility ability2 = new LoyaltyAbility(new BecomesCreatureSourceEffect(new GideonChampionOfJusticeToken(), "planeswalker", Duration.EndOfTurn, false, false), 0);
ability2.addEffect(new PreventAllDamageToSourceEffect(Duration.EndOfTurn));
this.addAbility(ability2);

View file

@ -75,5 +75,31 @@ public class GideonTest extends CardTestPlayerBase {
assertPermanentCount(playerB, "Silvercoat Lion", 1);
assertAbility(playerB, "Silvercoat Lion", IndestructibleAbility.getInstance(), false);
}
/*
* Reported bug: When Gideon, Champion of Justice uses his +0 ability to become a creature,
* he is immediately sent to the grave instead.
*/
@Test
public void testGideonChampionOfJusticeSecondAbility() {
/*
Gideon, Champion of Justice {2}{W}{W} - 4 Loyalty
0: Until end of turn, Gideon, Champion of Justice becomes a Human Soldier creature with power and toughness
each equal to the number of loyalty counters on him and gains indestructible. He's still a planeswalker.
Prevent all damage that would be dealt to him this turn.
*/
addCard(Zone.BATTLEFIELD, playerA, "Gideon, Champion of Justice", 1);
activateAbility(1, PhaseStep.PRECOMBAT_MAIN, playerA, "+0: Until end of turn");
setStopAt(1, PhaseStep.BEGIN_COMBAT);
execute();
assertGraveyardCount(playerA, "Gideon, Champion of Justice", 0);
assertPermanentCount(playerA, "Gideon, Champion of Justice", 1);
assertPowerToughness(playerA, "Gideon, Champion of Justice", 4, 4);
assertCounterCount(playerA, "Gideon, Champion of Justice", CounterType.LOYALTY, 4);
}
}