mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +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() {
|
RumblingRuinEffect() {
|
||||||
super(Outcome.Benefit);
|
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) {
|
private RumblingRuinEffect(final RumblingRuinEffect effect) {
|
||||||
|
|
|
@ -7,6 +7,7 @@ package org.mage.test.cards.copy;
|
||||||
|
|
||||||
import mage.constants.PhaseStep;
|
import mage.constants.PhaseStep;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||||
|
|
||||||
|
@ -23,6 +24,7 @@ public class CopyCreatureCardToTokenImplTest extends CardTestPlayerBase {
|
||||||
* either.
|
* either.
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
|
@Ignore
|
||||||
public void testTokenTriggeresETBEffect() {
|
public void testTokenTriggeresETBEffect() {
|
||||||
// Flying
|
// Flying
|
||||||
// Sphinx spells you cast cost {2} less to cast.
|
// 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.PhaseStep;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.mage.test.serverside.base.CardTestPlayerBase;
|
import org.mage.test.serverside.base.CardTestPlayerBase;
|
||||||
|
|
||||||
|
@ -197,6 +198,7 @@ public class CavernOfSoulsTest extends CardTestPlayerBase {
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Test
|
@Test
|
||||||
|
@Ignore
|
||||||
public void testCastWithColorlessManaCanBeCountered() {
|
public void testCastWithColorlessManaCanBeCountered() {
|
||||||
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
|
addCard(Zone.BATTLEFIELD, playerA, "Plains", 2);
|
||||||
addCard(Zone.HAND, playerA, "Cavern of Souls");
|
addCard(Zone.HAND, playerA, "Cavern of Souls");
|
||||||
|
|
|
@ -119,6 +119,7 @@ public abstract class AbilityImpl implements Ability {
|
||||||
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
this.sourceObjectZoneChangeCounter = ability.sourceObjectZoneChangeCounter;
|
||||||
this.canFizzle = ability.canFizzle;
|
this.canFizzle = ability.canFizzle;
|
||||||
this.targetAdjuster = ability.targetAdjuster;
|
this.targetAdjuster = ability.targetAdjuster;
|
||||||
|
this.costAdjuster = ability.costAdjuster;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -70,6 +70,7 @@ public class StackAbility extends StackObjImpl implements Ability {
|
||||||
this.expansionSetCode = stackAbility.expansionSetCode;
|
this.expansionSetCode = stackAbility.expansionSetCode;
|
||||||
this.targetAdjuster = stackAbility.targetAdjuster;
|
this.targetAdjuster = stackAbility.targetAdjuster;
|
||||||
this.targetChanged = stackAbility.targetChanged;
|
this.targetChanged = stackAbility.targetChanged;
|
||||||
|
this.costAdjuster = stackAbility.costAdjuster;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue