forked from External/mage
38 lines
1 KiB
Java
38 lines
1 KiB
Java
|
|
package mage.cards.f;
|
|
|
|
import java.util.UUID;
|
|
import mage.abilities.effects.common.continuous.BoostTargetEffect;
|
|
import mage.abilities.effects.keyword.ScryEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.Duration;
|
|
import mage.target.common.TargetCreaturePermanent;
|
|
|
|
/**
|
|
*
|
|
* @author Plopman
|
|
*/
|
|
public final class FerociousCharge extends CardImpl {
|
|
|
|
public FerociousCharge(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{2}{G}");
|
|
|
|
|
|
// Target creature gets +4/+4 until end of turn.
|
|
this.getSpellAbility().addEffect(new BoostTargetEffect(4, 4, Duration.EndOfTurn));
|
|
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
|
// Scry 2.
|
|
this.getSpellAbility().addEffect(new ScryEffect(2));
|
|
}
|
|
|
|
public FerociousCharge(final FerociousCharge card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public FerociousCharge copy() {
|
|
return new FerociousCharge(this);
|
|
}
|
|
}
|