mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
[BLB] Implement Starlit Soothsayer
This commit is contained in:
parent
f7eeb75545
commit
f57231ff95
2 changed files with 49 additions and 0 deletions
48
Mage.Sets/src/mage/cards/s/StarlitSoothsayer.java
Normal file
48
Mage.Sets/src/mage/cards/s/StarlitSoothsayer.java
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
|
||||
import mage.abilities.condition.common.YouGainedOrLostLifeCondition;
|
||||
import mage.abilities.effects.keyword.SurveilEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.TargetController;
|
||||
import mage.watchers.common.PlayerGainedLifeWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class StarlitSoothsayer extends CardImpl {
|
||||
|
||||
public StarlitSoothsayer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.BAT);
|
||||
this.subtype.add(SubType.CLERIC);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// At the beginning of your end step, if you gained or lost life this turn, surveil 1.
|
||||
this.addAbility(new BeginningOfEndStepTriggeredAbility(
|
||||
new SurveilEffect(1), TargetController.YOU,
|
||||
YouGainedOrLostLifeCondition.instance, false
|
||||
), new PlayerGainedLifeWatcher());
|
||||
}
|
||||
|
||||
private StarlitSoothsayer(final StarlitSoothsayer card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public StarlitSoothsayer copy() {
|
||||
return new StarlitSoothsayer(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -142,6 +142,7 @@ public final class Bloomburrow extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Splash Lasher", 73, Rarity.UNCOMMON, mage.cards.s.SplashLasher.class));
|
||||
cards.add(new SetCardInfo("Star Charter", 33, Rarity.UNCOMMON, mage.cards.s.StarCharter.class));
|
||||
cards.add(new SetCardInfo("Stargaze", 114, Rarity.UNCOMMON, mage.cards.s.Stargaze.class));
|
||||
cards.add(new SetCardInfo("Starlit Soothsayer", 115, Rarity.COMMON, mage.cards.s.StarlitSoothsayer.class));
|
||||
cards.add(new SetCardInfo("Starscape Cleric", 116, Rarity.UNCOMMON, mage.cards.s.StarscapeCleric.class));
|
||||
cards.add(new SetCardInfo("Starseer Mentor", 233, Rarity.UNCOMMON, mage.cards.s.StarseerMentor.class));
|
||||
cards.add(new SetCardInfo("Steampath Charger", 153, Rarity.COMMON, mage.cards.s.SteampathCharger.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue