forked from External/mage
[LCI] Implement Seeker of Sunlight
This commit is contained in:
parent
dba7107bde
commit
338e9d8aaa
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/s/SeekerOfSunlight.java
Normal file
41
Mage.Sets/src/mage/cards/s/SeekerOfSunlight.java
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.ActivateAsSorceryActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.keyword.ExploreSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SeekerOfSunlight extends CardImpl {
|
||||
|
||||
public SeekerOfSunlight(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||
|
||||
this.subtype.add(SubType.MERFOLK);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// {2}{G}: Seeker of Sunlight explores. Activate only as a sorcery.
|
||||
this.addAbility(new ActivateAsSorceryActivatedAbility(
|
||||
new ExploreSourceEffect(true, "{this}"), new ManaCostsImpl<>("{2}{G}")
|
||||
));
|
||||
}
|
||||
|
||||
private SeekerOfSunlight(final SeekerOfSunlight card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SeekerOfSunlight copy() {
|
||||
return new SeekerOfSunlight(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -199,6 +199,7 @@ public final class TheLostCavernsOfIxalan extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Sanguine Evangelist", 34, Rarity.RARE, mage.cards.s.SanguineEvangelist.class));
|
||||
cards.add(new SetCardInfo("Screaming Phantom", 118, Rarity.COMMON, mage.cards.s.ScreamingPhantom.class));
|
||||
cards.add(new SetCardInfo("Scytheclaw Raptor", 165, Rarity.UNCOMMON, mage.cards.s.ScytheclawRaptor.class));
|
||||
cards.add(new SetCardInfo("Seeker of Sunlight", 210, Rarity.COMMON, mage.cards.s.SeekerOfSunlight.class));
|
||||
cards.add(new SetCardInfo("Seismic Monstrosaur", 166, Rarity.COMMON, mage.cards.s.SeismicMonstrosaur.class));
|
||||
cards.add(new SetCardInfo("Self-Reflection", 74, Rarity.UNCOMMON, mage.cards.s.SelfReflection.class));
|
||||
cards.add(new SetCardInfo("Sentinel of the Nameless City", 211, Rarity.RARE, mage.cards.s.SentinelOfTheNamelessCity.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue