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:
parent
be55ba19eb
commit
cdf639ae65
1 changed files with 33 additions and 0 deletions
33
Mage.Sets/src/mage/cards/f/FeralRoar.java
Normal file
33
Mage.Sets/src/mage/cards/f/FeralRoar.java
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue