foul-magics/Mage.Sets/src/mage/cards/p/PrimordialSage.java
2021-02-02 17:07:37 -05:00

39 lines
1.1 KiB
Java

package mage.cards.p;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.common.SpellCastControllerTriggeredAbility;
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.filter.StaticFilters;
/**
*
* @author Loki
*/
public final class PrimordialSage extends CardImpl {
public PrimordialSage(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}{G}");
this.subtype.add(SubType.SPIRIT);
this.power = new MageInt(4);
this.toughness = new MageInt(5);
// Whenever you cast a creature spell, you may draw a card.
this.addAbility(new SpellCastControllerTriggeredAbility(new DrawCardSourceControllerEffect(1), StaticFilters.FILTER_SPELL_A_CREATURE, true));
}
private PrimordialSage(final PrimordialSage card) {
super(card);
}
@Override
public PrimordialSage copy() {
return new PrimordialSage(this);
}
}