mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
3642ca394c
5 changed files with 8 additions and 1 deletions
|
@ -47,7 +47,8 @@ class RumblingRuinEffect extends OneShotEffect {
|
|||
|
||||
RumblingRuinEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "";
|
||||
staticText = "count the number of +1/+1 counters on creatures you control. " +
|
||||
"Creatures your opponents control with power less than or equal to that number can't block this turn.";
|
||||
}
|
||||
|
||||
private RumblingRuinEffect(final RumblingRuinEffect effect) {
|
||||
|
|
|
@ -7,6 +7,7 @@ package org.mage.test.cards.copy;
|
|||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
|
@ -23,6 +24,7 @@ public class CopyCreatureCardToTokenImplTest extends CardTestPlayerBase {
|
|||
* either.
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testTokenTriggeresETBEffect() {
|
||||
// Flying
|
||||
// Sphinx spells you cast cost {2} less to cast.
|
||||
|
|
|
@ -2,6 +2,7 @@ package org.mage.test.cards.single.avr;
|
|||
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||
|
||||
|
@ -197,6 +198,7 @@ public class CavernOfSoulsTest extends CardTestPlayerBase {
|
|||
*
|
||||
*/
|
||||
@Test
|
||||
@Ignore
|
||||
public void testCastWithColorlessManaCanBeCountered() {
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
|
||||
addCard(Zone.HAND, playerA, "Cavern of Souls");
|
||||
|
|
|
@ -119,6 +119,7 @@ public abstract class AbilityImpl implements Ability {
|
|||
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
||||
this.canFizzle = ability.canFizzle;
|
||||
this.targetAdjuster = ability.targetAdjuster;
|
||||
this.costAdjuster = ability.costAdjuster;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -70,6 +70,7 @@ public class StackAbility extends StackObjImpl implements Ability {
|
|||
this.expansionSetCode = stackAbility.expansionSetCode;
|
||||
this.targetAdjuster = stackAbility.targetAdjuster;
|
||||
this.targetChanged = stackAbility.targetChanged;
|
||||
this.costAdjuster = stackAbility.costAdjuster;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue