Merge origin/master

Conflicts:
	Mage.Sets/src/mage/sets/gatecrash/MasterBiomancer.java
This commit is contained in:
LevelX2 2015-10-17 16:33:05 +02:00
commit 4243a1d3a3
57 changed files with 3396 additions and 79 deletions

View file

@ -2,6 +2,8 @@ package org.mage.test.cards.triggers;
import mage.constants.PhaseStep;
import mage.constants.Zone;
import mage.game.permanent.Permanent;
import org.junit.Assert;
import org.junit.Test;
import org.mage.test.serverside.base.CardTestPlayerBase;
@ -43,6 +45,8 @@ public class FathomMageTest extends CardTestPlayerBase {
// card draw triggered ability will trigger once for each of those counters from Master Biomancer.
addCard(Zone.HAND, playerA, "Fathom Mage");
// Each other creature you control enters the battlefield with a number of additional +1/+1 counters on it equal to
// Master Biomancer's power and as a Mutant in addition to its other types.
addCard(Zone.BATTLEFIELD, playerA, "Master Biomancer", 1);
addCard(Zone.BATTLEFIELD, playerA, "Forest", 2);
addCard(Zone.BATTLEFIELD, playerA, "Island", 2);
@ -54,6 +58,10 @@ public class FathomMageTest extends CardTestPlayerBase {
assertPermanentCount(playerA, "Fathom Mage", 1);
assertPowerToughness(playerA, "Fathom Mage", 3, 3);
Permanent fathomMage = getPermanent("Fathom Mage", playerA);
Assert.assertEquals("Fathom Mage has to be a Mutant", fathomMage.getSubtype().contains("Mutant"), true);
assertHandCount(playerA, 2);
}
}