Merge pull request #5978 from apetresc/archfiend-of-spite-fix

Check Archfiend of Spite trigger on CREATURE_DAMAGED
This commit is contained in:
Oleg Agafonov 2019-09-12 23:39:31 +02:00 committed by GitHub
commit 181722f733
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 1 deletions

View file

@ -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

View file

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