mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 04:12:14 -08:00
more reward cards
This commit is contained in:
parent
93f55ec2dc
commit
90116082ea
26 changed files with 789 additions and 24 deletions
|
|
@ -0,0 +1,25 @@
|
|||
package org.mage.test.cards.damage;
|
||||
|
||||
import mage.Constants;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestBase;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class PsionicBlastTest extends CardTestBase {
|
||||
|
||||
@Test
|
||||
public void testDamageInPlayer() {
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Island");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Island");
|
||||
addCard(Constants.Zone.BATTLEFIELD, playerA, "Island");
|
||||
addCard(Constants.Zone.HAND, playerA, "Psionic Blast");
|
||||
|
||||
castSpell(playerA, "Psionic Blast");
|
||||
execute();
|
||||
|
||||
assertLife(playerA, 18);
|
||||
assertLife(playerB, 16);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue