1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-12 17:00:08 -09:00

[ANA] - implemented Feral Roar

This commit is contained in:
Oleg Agafonov 2018-10-09 18:03:20 +04:00
parent be55ba19eb
commit cdf639ae65

View file

@ -0,0 +1,33 @@
package mage.cards.f;
import mage.abilities.effects.common.continuous.BoostTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.target.common.TargetCreaturePermanent;
import java.util.UUID;
/**
* @author JayDi85
*/
public final class FeralRoar extends CardImpl {
public FeralRoar(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
// Target creature gets +4/+4 until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(4, 4, Duration.EndOfTurn));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}
public FeralRoar(final FeralRoar card) {
super(card);
}
@Override
public FeralRoar copy() {
return new FeralRoar(this);
}
}