mirror of
https://github.com/correl/mage.git
synced 2025-01-14 03:00:10 +00:00
This commit is contained in:
commit
913bf3374a
2 changed files with 89 additions and 86 deletions
|
@ -27,14 +27,18 @@
|
|||
*/
|
||||
package mage.sets.coldsnap;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.ContinuousEffectImpl;
|
||||
import mage.abilities.keyword.RippleAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.*;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Layer;
|
||||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.SubLayer;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -42,8 +46,9 @@ import mage.game.stack.Spell;
|
|||
import mage.game.stack.StackObject;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author klayhamn
|
||||
*/
|
||||
public class ThrummingStone extends CardImpl {
|
||||
|
@ -86,8 +91,8 @@ class ThrummingStoneGainAbilitySpellsEffect extends ContinuousEffectImpl {
|
|||
|
||||
public ThrummingStoneGainAbilitySpellsEffect(final ThrummingStoneGainAbilitySpellsEffect effect) {
|
||||
super(effect);
|
||||
this.ability = effect.ability;
|
||||
this.filter = effect.filter;
|
||||
this.ability = effect.ability.copy();
|
||||
this.filter = effect.filter.copy();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package org.mage.test.cards.abilities.other;
|
||||
|
||||
import jdk.nashorn.internal.ir.annotations.Ignore;
|
||||
import mage.constants.PhaseStep;
|
||||
import mage.constants.Zone;
|
||||
import org.junit.Test;
|
||||
|
@ -34,7 +33,6 @@ public class ThrummingStoneTest extends CardTestPlayerBase {
|
|||
}
|
||||
|
||||
@Test
|
||||
@Ignore // FIXME: This still fails
|
||||
public void testApplyForNoneRippleCardsWhenMultiRipple() throws Exception {
|
||||
|
||||
removeAllCardsFromLibrary(playerA);
|
||||
|
|
Loading…
Reference in a new issue