foul-magics/Mage.Sets/src/mage/cards/f/FuelForTheCause.java
2018-06-02 17:59:49 +02:00

36 lines
910 B
Java

package mage.cards.f;
import java.util.UUID;
import mage.abilities.effects.common.CounterTargetEffect;
import mage.abilities.effects.common.counter.ProliferateEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.target.TargetSpell;
/**
*
* @author Loki
*/
public final class FuelForTheCause extends CardImpl {
public FuelForTheCause (UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{U}{U}");
this.getSpellAbility().addTarget(new TargetSpell());
this.getSpellAbility().addEffect(new CounterTargetEffect());
this.getSpellAbility().addEffect(new ProliferateEffect());
}
public FuelForTheCause (final FuelForTheCause card) {
super(card);
}
@Override
public FuelForTheCause copy() {
return new FuelForTheCause(this);
}
}