mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
Merge pull request #5978 from apetresc/archfiend-of-spite-fix
Check Archfiend of Spite trigger on CREATURE_DAMAGED
This commit is contained in:
commit
181722f733
2 changed files with 33 additions and 1 deletions
|
@ -73,7 +73,7 @@ class ArchfiendOfSpiteAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.DAMAGED_PLAYER;
|
||||
return event.getType() == GameEvent.EventType.DAMAGED_CREATURE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
package org.mage.test.cards.single;
|
||||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
public class ArchfiendOfSpiteTest extends CardTestPlayerBase {
|
||||
|
||||
@Test
|
||||
public void damageTriggerTest() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Archfiend of Spite");
|
||||
addCard(Zone.BATTLEFIELD, playerB, "Mountain", 1);
|
||||
addCard(Zone.HAND, playerB, "Lightning Bolt", 1);
|
||||
setStopAt(1, PhaseStep.UNTAP);
|
||||
execute();
|
||||
|
||||
assertPermanentCount(playerA, "Archfiend of Spite", 1);
|
||||
assertLife(playerB, 20);
|
||||
|
||||
castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerB, "Lightning Bolt", "Archfiend of Spite");
|
||||
setStopAt(1, PhaseStep.POSTCOMBAT_MAIN);
|
||||
setStrictChooseMode(true);
|
||||
execute();
|
||||
|
||||
assertPermanentCount(playerA, "Archfiend of Spite", 1);
|
||||
assertPermanentCount(playerB, "Mountain", 1);
|
||||
assertDamageReceived(playerA, "Archfiend of Spite", 3);
|
||||
assertLife(playerB, 17);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue