forked from External/mage
fixes a few bugs along the way: [[Pilgrim and Justice]] & [[Pilgrim of Virue]] were incorrectly adding a "to you" to their damage clause. [[Ajani's Aid]] was improperly a one-use prevention effect. [[Story Circle]] and [[Prismatic Circle]] have not been refactor as it is not currently possible to have a proper filter for them. Would require a FilterSource with a 4-argument match most likely.
46 lines
1.4 KiB
Java
46 lines
1.4 KiB
Java
|
|
package mage.cards.c;
|
|
|
|
import mage.ObjectColor;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.abilities.effects.common.PreventNextDamageFromChosenSourceEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Duration;
|
|
import mage.filter.FilterObject;
|
|
import mage.filter.predicate.mageobject.ColorPredicate;
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
* @author Plopman
|
|
*/
|
|
public final class CircleOfProtectionGreen extends CardImpl {
|
|
|
|
private static final FilterObject filter = new FilterObject("green source");
|
|
|
|
static {
|
|
filter.add(new ColorPredicate(ObjectColor.GREEN));
|
|
}
|
|
|
|
public CircleOfProtectionGreen(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}");
|
|
|
|
|
|
// {1}: The next time a green source of your choice would deal damage to you this turn, prevent that damage.
|
|
Effect effect = new PreventNextDamageFromChosenSourceEffect(Duration.EndOfTurn, true, filter);
|
|
this.addAbility(new SimpleActivatedAbility(effect, new ManaCostsImpl<>("{1}")));
|
|
}
|
|
|
|
private CircleOfProtectionGreen(final CircleOfProtectionGreen card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public CircleOfProtectionGreen copy() {
|
|
return new CircleOfProtectionGreen(this);
|
|
}
|
|
}
|