mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 22:42:03 -08:00
[LCI] Implement River Herald Scout
This commit is contained in:
parent
86250a436f
commit
c6e00c39a8
2 changed files with 39 additions and 0 deletions
38
Mage.Sets/src/mage/cards/r/RiverHeraldScout.java
Normal file
38
Mage.Sets/src/mage/cards/r/RiverHeraldScout.java
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
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 RiverHeraldScout extends CardImpl {
|
||||
|
||||
public RiverHeraldScout(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||
|
||||
this.subtype.add(SubType.MERFOLK);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When River Herald Scout enters the battlefield, it explores.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new ExploreSourceEffect()));
|
||||
}
|
||||
|
||||
private RiverHeraldScout(final RiverHeraldScout card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RiverHeraldScout copy() {
|
||||
return new RiverHeraldScout(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -168,6 +168,7 @@ public final class TheLostCavernsOfIxalan extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Restless Ridgeline", 283, Rarity.RARE, mage.cards.r.RestlessRidgeline.class));
|
||||
cards.add(new SetCardInfo("Restless Vents", 284, Rarity.RARE, mage.cards.r.RestlessVents.class));
|
||||
cards.add(new SetCardInfo("River Herald Guide", 209, Rarity.COMMON, mage.cards.r.RiverHeraldGuide.class));
|
||||
cards.add(new SetCardInfo("River Herald Scout", 72, Rarity.COMMON, mage.cards.r.RiverHeraldScout.class));
|
||||
cards.add(new SetCardInfo("Roar of the Fifth People", 189, Rarity.MYTHIC, mage.cards.r.RoarOfTheFifthPeople.class));
|
||||
cards.add(new SetCardInfo("Ruin-Lurker Bat", 33, Rarity.UNCOMMON, mage.cards.r.RuinLurkerBat.class));
|
||||
cards.add(new SetCardInfo("Rumbling Rockslide", 163, Rarity.COMMON, mage.cards.r.RumblingRockslide.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue