additional card fix for #2057

This commit is contained in:
drmDev 2016-07-09 16:31:17 -04:00
parent 6fe2c226b8
commit f694c2106b

View file

@ -28,13 +28,13 @@
package mage.sets.urzassaga;
import java.util.UUID;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.common.PreventAllDamageByAllPermanentsEffect;
import mage.abilities.keyword.CyclingAbility;
import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Rarity;
import mage.abilities.costs.mana.ManaCostsImpl;
import mage.abilities.effects.common.PreventAllDamageByAllEffect;
import mage.abilities.keyword.CyclingAbility;
import mage.cards.CardImpl;
/**
*
@ -48,7 +48,7 @@ public class Lull extends CardImpl {
//Prevent all combat damage that would be dealt this turn.
this.getSpellAbility().addEffect(new PreventAllDamageByAllEffect(Duration.EndOfTurn, true));
this.getSpellAbility().addEffect(new PreventAllDamageByAllPermanentsEffect(Duration.EndOfTurn, true));
this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
}