1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-09 01:01:06 -09:00

[BNG] Some fixes.

This commit is contained in:
LevelX2 2014-01-25 01:55:53 +01:00
parent cbff048241
commit 6a638051f6
7 changed files with 64 additions and 48 deletions

View file

@ -103,7 +103,7 @@ class FelhideBrawlerRestrictionEffect extends RestrictionEffect<FelhideBrawlerRe
@Override
public boolean applies(Permanent permanent, Ability source, Game game) {
if (game.getBattlefield().countAll(filter, source.getControllerId(), game) == 0) {
if (game.getBattlefield().count(filter, source.getSourceId(), source.getControllerId(), game) == 0) {
return true;
}
return false;

View file

@ -61,7 +61,7 @@ public class MarshmistTitan extends CardImpl<MarshmistTitan> {
this.toughness = new MageInt(5);
// Marshmist Titan costs {X} less to cast, where X is your devotion to black.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new MarshmistTitanCostReductionEffect()));
this.addAbility(new SimpleStaticAbility(Zone.OUTSIDE, new MarshmistTitanCostReductionEffect()));
}
public MarshmistTitan(final MarshmistTitan card) {

View file

@ -29,22 +29,21 @@ package mage.sets.bornofthegods;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.AttacksAttachedTriggeredAbility;
import mage.abilities.common.AttacksTriggeredAbility;
import mage.abilities.TriggeredAbilityImpl;
import mage.abilities.common.SimpleStaticAbility;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.Effect;
import mage.abilities.effects.common.LoseLifeTargetEffect;
import mage.abilities.effects.common.continious.BoostEnchantedEffect;
import mage.abilities.keyword.BestowAbility;
import mage.cards.CardImpl;
import mage.constants.AttachmentType;
import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.Outcome;
import mage.constants.Rarity;
import mage.constants.Zone;
import mage.game.Game;
import mage.players.Player;
import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.target.targetpointer.FixedTarget;
/**
*
@ -63,16 +62,12 @@ public class SpitefulReturned extends CardImpl<SpitefulReturned> {
// Bestow {3}{B}
this.addAbility(new BestowAbility(this, "{3}{B}"));
// Whenever Spiteful Returned or enchanted creature attacks, defending player loses 2 life.
Ability ability = new AttacksTriggeredAbility(new SpitefulReturnedEffect(), false);
this.addAbility(ability);
ability = new AttacksAttachedTriggeredAbility(new SpitefulReturnedEffect(), AttachmentType.AURA, false);
this.addAbility(ability);
Effect effect = new LoseLifeTargetEffect(2);
effect.setText("defending player loses 2 life");
this.addAbility(new SpitefulReturnedTriggeredAbility(effect));
// Enchanted creature gets +1/+1.
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(1, 1, Duration.WhileOnBattlefield)));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(1,1, Duration.WhileOnBattlefield)));
}
public SpitefulReturned(final SpitefulReturned card) {
@ -85,30 +80,47 @@ public class SpitefulReturned extends CardImpl<SpitefulReturned> {
}
}
class SpitefulReturnedEffect extends OneShotEffect<SpitefulReturnedEffect> {
class SpitefulReturnedTriggeredAbility extends TriggeredAbilityImpl<SpitefulReturnedTriggeredAbility> {
public SpitefulReturnedEffect() {
super(Outcome.LoseLife);
staticText = "defending player loses 2 life";
public SpitefulReturnedTriggeredAbility(Effect effect) {
super(Zone.BATTLEFIELD, effect);
}
public SpitefulReturnedEffect(final SpitefulReturnedEffect effect) {
super(effect);
public SpitefulReturnedTriggeredAbility(final SpitefulReturnedTriggeredAbility ability) {
super(ability);
}
@Override
public SpitefulReturnedEffect copy() {
return new SpitefulReturnedEffect(this);
public SpitefulReturnedTriggeredAbility copy() {
return new SpitefulReturnedTriggeredAbility(this);
}
@Override
public boolean apply(Game game, Ability source) {
UUID defenderId = game.getCombat().getDefenderId(source.getSourceId());
Player defender = game.getPlayer(defenderId);
if (defender != null) {
defender.loseLife(2, game);
return true;
public boolean checkTrigger(GameEvent event, Game game) {
if (event.getType() == GameEvent.EventType.ATTACKER_DECLARED) {
Permanent sourcePermanent = game.getPermanent(this.getSourceId());
if (sourcePermanent != null) {
if (sourcePermanent.getCardType().contains(CardType.CREATURE)) {
if (event.getSourceId() == this.getSourceId()) {
UUID defender = game.getCombat().getDefendingPlayerId(this.getSourceId(), game);
this.getEffects().get(0).setTargetPointer(new FixedTarget(defender));
return true;
}
} else {
if (sourcePermanent.getAttachedTo() != null && sourcePermanent.getAttachedTo().equals(event.getSourceId())) {
UUID defender = game.getCombat().getDefendingPlayerId(sourcePermanent.getAttachedTo(), game);
this.getEffects().get(0).setTargetPointer(new FixedTarget(defender));
return true;
}
}
}
}
return false;
}
@Override
public String getRule() {
return new StringBuilder("Whenever {this} or enchanted creature attacks, ").append(super.getRule()).toString();
}
}

View file

@ -61,8 +61,9 @@ public class ReturnToHandTargetCost extends CostImpl<ReturnToHandTargetCost> {
if (targets.choose(Outcome.ReturnToHand, controllerId, sourceId, game)) {
for (UUID targetId: targets.get(0).getTargets()) {
Permanent permanent = game.getPermanent(targetId);
if (permanent == null)
if (permanent == null) {
return false;
}
paid |= permanent.moveToZone(Zone.HAND, sourceId, game, false);
}
}

View file

@ -28,12 +28,12 @@
package mage.abilities.effects.common;
import mage.constants.Outcome;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.dynamicvalue.DynamicValue;
import mage.abilities.dynamicvalue.common.StaticValue;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
import mage.players.Player;
@ -76,6 +76,9 @@ public class LoseLifeTargetEffect extends OneShotEffect<LoseLifeTargetEffect> {
@Override
public String getText(Mode mode) {
if (!staticText.isEmpty()) {
return staticText;
}
StringBuilder sb = new StringBuilder();
String message = amount.getMessage();

View file

@ -104,7 +104,7 @@ public class PutTopCardOfLibraryIntoGraveEachPlayerEffect extends OneShotEffect<
}
private void putCardsToGravecard(UUID playerId, Ability source, Game game) {
Player player = game.getPlayer(id);
Player player = game.getPlayer(playerId);
if (player != null) {
int cardsCount = Math.min(numberCards, player.getLibrary().size());
for (int i = 0; i < cardsCount; i++) {

View file

@ -22920,7 +22920,7 @@ Hold at Bay|Born of the Gods|18|C|{1}{W}|Instant|||Prevent the next 7 damage tha
Loyal Pegasus|Born of the Gods|19|C|{W}|Creature — Pegasus|2|1|Flying$Loyal Pegasus can't attack or block alone.|
Mortal's Ardor|Born of the Gods|20|C|{W}|Instant|||Target creature gets +1/+1 and gains lifelink until end of turn.|
Nyxborn Shieldmate|Born of the Gods|21|C|{W}|Enchantment Creature — Human Soldier|1|2|Bestow {2}{W}$Enchanted creature gets +1/+2.|
Oreskos Sun Guide|Born of the Gods|22|C|{1}{W}|Creature — Cat Monk|2|2|<i>Inspired</i> Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.|
Oreskos Sun Guide|Born of the Gods|22|C|{1}{W}|Creature — Cat Monk|2|2|<i>Inspired</i> - Whenever Oreskos Sun Guide becomes untapped, you gain 2 life.|
Ornitharch|Born of the Gods|23|U|{3}{W}{W}|Creature - Archon|3|3|Flying$Tribute 2$When Ornitharch enters the battlefield, if tribute wasn't paid, put two 1/1 white Bird creature tokens with flying onto the battlefield.|
Plea for Guidance|Born of the Gods|24|R|{5}{W}|Sorcery|||Search your library for up to two enchantment cards, reveal them, and put them into your hand. Then shuffle your library.|
Revoke Existence|Born of the Gods|25|C|{1}{W}|Sorcery|||Exile target artifact or enchantment.|
@ -22928,8 +22928,8 @@ Silent Sentinel|Born of the Gods|26|R|{5}{W}{W}|Creature
Spirit of the Labyrinth|Born of the Gods|27|R|{1}{W}|Enchantment Creature — Spirit|3|1|Each player can't draw more than one card each turn.|
Sunbond|Born of the Gods|28|U|{3}{W}|Enchantment — Aura|||Enchant creature$Enchanted creature has "Whenever you gain life, put that many +1/+1 counters on this creature."|
Vanguard of Brimaz|Born of the Gods|29|U|{W}{W}|Creature — Cat Soldier|2|2|Vigilance$<i>Heroic</i> — Whenever you cast a spell that targets Vanguard of Brimaz, put a 1/1 white Cat Soldier creature token with vigilance onto the battlefield.|
Aerie Worshippers|Born of the Gods|30|U|{3}{U}|Creature — Human Cleric|2|4|<i>Inspired</i> Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.|
Arbiter of the Ideal|Born of the Gods|31|R|{4}{U}{U}|Creature — Sphinx|4|5|Flying$<i>Inspired</i> Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.|
Aerie Worshippers|Born of the Gods|30|U|{3}{U}|Creature — Human Cleric|2|4|<i>Inspired</i> - Whenever Aerie Worshipers becomes untapped, you may pay {2}{U}. If you do, put a 2/2 blue Bird enchantment creature token with flying onto the battlefield.|
Arbiter of the Ideal|Born of the Gods|31|R|{4}{U}{U}|Creature — Sphinx|4|5|Flying$<i>Inspired</i> - Whenever Arbiter of the Ideal becomes untapped, reveal the top card of your library. If it's an artifact, creature, or land card, you may put it onto the battlefield with a manifestation counter on it. It's an enchantment in addition to its other types.|
Archetype of Imagination|Born of the Gods|32|U|{4}{U}{U}|Enchantment Creature — Human Wizard|3|2|Creatures you control have flying.$Creatures your opponents control lose flying and can't have or gain flying.|
Chorus of the Tides|Born of the Gods|33|C|{3}{U}|Creature - Siren|3|2|Flying$<i>Heroic</i> - Whenever you cast a spell that targets Chorus of the Tides, scry 1.|
Crypsis|Born of the Gods|34|C|{1}{U}|Instant|||Target creature you control gains protection from creatures your opponents control until end of turn. Untap it.|
@ -22969,7 +22969,7 @@ Eye Gouge|Born of the Gods|67|C|{B}|Instant|||Target creature gets -1/-1 until e
Fate Unraveler|Born of the Gods|68|R|{3}{B}|Enchantment Creature — Hag|3|4|Whenever an opponent draws a card, Fate Unraveler deals 1 damage to that player.|
Fated Return|Born of the Gods|69|R|{4}{B}{B}{B}|Instant|||Put target creature card from a graveyard onto the battlefield under your control. It gains indestructible. If it's your turn, scry 2.|
Felhide Brawler|Born of the Gods|70|C|{1}{B}|Creature — Minotaur|2|2|Felhide Brawler can't block unless you control another Minotaur.|
Forlorn Pseudamma|Born of the Gods|71|U|{3}{B}|Creature — Zombie|2|1|Intimidate$<i>Inspired</i> Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, put a 2/2 black Zombie enchantment creature token onto the battlefield.|
Forlorn Pseudamma|Born of the Gods|71|U|{3}{B}|Creature — Zombie|2|1|Intimidate$<i>Inspired</i> - Whenever Forlorn Pseudamma becomes untapped, you may pay {2}{B}. If you do, put a 2/2 black Zombie enchantment creature token onto the battlefield.|
Forsaken Drifters|Born of the Gods|72|C|{3}{B}|Creature - Zombie|4|2|When Forsaken Drifters dies, put the top four cards of your library into your graveyard.|
Gild|Born of the Gods|73|R|{3}{B}|Sorcery|||Exile target creature. Put a colorless artifact token named Gold onto the battlefield. It has "Sacrifice this artifact: Add one mana of any color to your mana pool."|
Grisly Transformation|Born of the Gods|74|C|{2}{B}|Enchantment - Aura|||Enchant creature$When Grisly Transformation enters the battlefield, draw a card.$Enchanted creature has intimidate.|
@ -22978,12 +22978,12 @@ Marshmist Titan|Born of the Gods|76|C|{6}{B}|Creature
Necrobite|Born of the Gods|77|C|{2}{B}|Instant|||Target creature gains deathtouch until end of turn. Regenerate it.|
Nyxborn Eidolon|Born of the Gods|78|C|{1}{B}|Enchantment Creature — Spirit|2|1|Bestow {4}{B}$Enchanted creature gets +2/+1.|
Odunos River Trawler|Born of the Gods|79|U|{2}{B}|Creature - Zombie|2|2|When Odunos River Trawler enters the battlefield, return target enchantment creature card from your graveyard to your hand.${W}, Sacrifice Odunos River Trawler: Return target enchantment creature card from your graveyard to your hand.|
Pain Seer|Born of the Gods|80|R|{1}{B}|Creature — Human Wizard|2|2|<i>Inspired</i> Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.|
Pain Seer|Born of the Gods|80|R|{1}{B}|Creature — Human Wizard|2|2|<i>Inspired</i> - Whenever Pain Seer becomes untapped, reveal the top card of your library and put that card into your hand. You lose life equal to that card's converted mana cost.|
Sanguimancy|Born of the Gods|81|U|{4}{B}|Sorcery|||You draw X cards and you lose X life, where X is your devotion to black.|
Servant of Tymaret|Born of the Gods|82|C|{2}{B}|Creature — Zombie|1|3|<i>Inspired</i> Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.${2}{B}: Regenerate Servant of Tymaret.|
Servant of Tymaret|Born of the Gods|82|C|{2}{B}|Creature — Zombie|1|3|<i>Inspired</i> - Whenever Servant of Tymaret becomes untapped, each opponent loses 1 life. You gain life equal to the life lost this way.${2}{B}: Regenerate Servant of Tymaret.|
Shrike Harpy|Born of the Gods|83|U|{3}{B}{B}|Creature — Harpy|2|2|Flying$Tribute 2 <i><i>(As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)</i></i>$When Shrike Harpy enters the battlefield, if tribute wasn't paid, target opponent sacrifices a creature.|
Spiteful Returned|Born of the Gods|84|U|{1}{B}|Enchantment Creature — Zombie|1|1|Bestow {3}{B}$Whenever Spiteful Returned or enchanted creature attacks, defending player loses 2 life.$Enchanted creature gets +1/+1.|
Warchanter of Mogis|Born of the Gods|85|C|{3}{B}{B}|Creature — Minotaur Shaman|3|3|<i>Inspired</i> Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.|
Warchanter of Mogis|Born of the Gods|85|C|{3}{B}{B}|Creature — Minotaur Shaman|3|3|<i>Inspired</i> - Whenever Warchanter of Mogis becomes untapped, target creature you control gains intimidate until end of turn.|
Weight of the Underworld|Born of the Gods|86|C|{3}{B}|Enchantment — Aura|||Enchant creature$Enchanted creature gets -3/-2.|
Akroan Conscriptor|Born of the Gods|87|U|{4}{R}|Creature — Human Shaman|3|2|<i>Heroic</i> — Whenever you cast a spell that targets Akroan Conscriptor, gain control of another target creature until end of turn. Untap that creature. It gains haste until end of turn.|
Archetype of Aggression|Born of the Gods|88|U|{1}{R}{R}|Enchantment Creature — Human Warrior|3|2|Creatures you control have trample.$Creatures your opponents control lose trample and can't have or gain trample.|
@ -22994,11 +22994,11 @@ Everflame Eidolon|Born of the Gods|92|U|{1}{R}|Enchantment Creature
Fall of the Hammer|Born of the Gods|93|C|{1}{R}|Instant|||Target creature you control deals damage equal to its power to another target creature.|
Fated Conflagration|Born of the Gods|94|R|{1}{R}{R}{R}|Instant|||Fated Conflagration deals 5 damage to target creature or planewalker. If it's your turn, scry 2.|
Fearsome Temper|Born of the Gods|95|C|{2}{R}|Enchantment — Aura|||Enchant creature$Enchanted creature gets +2/+2 and has "{2}{R}: Target creature can't block this creature this turn."|
Felhide Spiritbinder|Born of the Gods|96|R|{3}{R}|Creature — Minotaur Shaman|3|4|<i>Inspired</i> Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, put a token onto the battlefield that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.|
Felhide Spiritbinder|Born of the Gods|96|R|{3}{R}|Creature — Minotaur Shaman|3|4|<i>Inspired</i> - Whenever Felhide Spiritbinder becomes untapped, you may pay {1}{R}. If you do, put a token onto the battlefield that's a copy of another target creature except it's an enchantment in addition to its other types. It gains haste. Exile it at the beginning of the next end step.|
Flame-Wreathed Phoenix|Born of the Gods|97|M|{2}{R}{R}|Creature — Phoenix|3|3|Flying$Tribute 2 <i>(As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)</i>$When Flame-Wreathed Phoenix enters the battlefield, if tribute wasn't paid, it gains haste and "When this creature dies, return it to its owner's hand."|
Forgestoker Dragon|Born of the Gods|98|R|{4}{R}{R}|Creature — Dragon|5|4|Flying${1}{R}: Forgestoker Dragon deals 1 damage to target creature. That creature can't block this combat. Activate this ability only if Forgestoker Dragon is attacking.|
Impetuous Sunchaser|Born of the Gods|99|C|{1}{R}|Creature — Human Soldier|1|1|Flying, haste$Impetuous Sunchaser attacks each turn if able.|
Kragma Butcher|Born of the Gods|100|C|{2}{R}|Creature — Minotaur Warrior|2|3|<i>Inspired</i> Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.|
Kragma Butcher|Born of the Gods|100|C|{2}{R}|Creature — Minotaur Warrior|2|3|<i>Inspired</i> - Whenever Kragma Butcher becomes untapped, it gets +2/+0 until end of turn.|
Lightning Volley|Born of the Gods|101|U|{3}{R}|Instant|||Until end of turn, creatures you control gain "{T}: This creature deals 1 damage to target creature or player."|
Nyxborn Rollicker|Born of the Gods|102|C|{R}|Enchantment Creature — Satyr|1|1|Bestow {1}{R}$Enchanted creature gets +1/+1.|
Oracle of Bones|Born of the Gods|103|R|{2}{R}{R}|Creature — Minotaur Shaman|3|1|Haste$Tribute 2 <i>(As this creature enters the battlefield, an opponent of your choice may place two +1/+1 counters on it.)</i>$When Oracle of Bones enters the battlefield, if tribute wasn't paid, you may cast an instant or sorcery card from your hand without paying its mana cost.|
@ -23007,7 +23007,7 @@ Pinnacle of Rage|Born of the Gods|105|U|{4}{R}{R}|Sorcery|||Pinnacle of Rage dea
Reckless Reveler|Born of the Gods|106|C|{1}{R}|Creature — Satyr|2|1|{R}, Sacrifice Reckless Reveler: Destroy target artifact.|
Rise to the Challenge|Born of the Gods|107|C|{1}{R}|Instant|||Target creature gets +2/+0 and gains first strike until end of turn.|
Satyr Firedancer|Born of the Gods|108|R|{1}{R}|Enchantment Creature — Satyr|1|1|Whenever an instant or sorcery spell you control deals damage to an opponent, Satyr Firedancer deals that much damage to target creature that player controls.|
Satyr Nyx-Smith|Born of the Gods|109|U|{2}{R}|Creature — Satyr Shaman|2|1|Haste$<i>Inspired</i> Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, put a 3/1 red Elemental enchantment creature token with haste onto the battlefield.|
Satyr Nyx-Smith|Born of the Gods|109|U|{2}{R}|Creature — Satyr Shaman|2|1|Haste$<i>Inspired</i> - Whenever Satyr Nyx-Smith becomes untapped, you may pay {2}{R}. If you do, put a 3/1 red Elemental enchantment creature token with haste onto the battlefield.|
Scouring Sands|Born of the Gods|110|C|{1}{R}|Sorcery|||Scouring Sands deals 1 damage to each creature your opponents control. Scry 1.|
Searing Blood|Born of the Gods|111|U|{R}{R}|Instant|||Searing Blood deals 2 damage to target creature. When that creature dies this turn, Searing Blood deals 3 damage to that creature's controller.|
Stormcaller of Keranos|Born of the Gods|112|U|{2}{R}|Creature — Human Shaman|2|2|Haste${1}{U}: Scry 1.|
@ -23031,8 +23031,8 @@ Nessian Wilds Ravager|Born of the Gods|129|R|{4}{G}{G}|Creature
Noble Quarry|Born of the Gods|130|U|{2}{G}|Enchantment Creature — Unicorn|1|1|Bestow {5}{G}$All creatures able to block Noble Quarry or enchanted creature do so.$Enchanted creature gets +1/+1.|
Nyxborn Wolf|Born of the Gods|131|C|{2}{G}|Enchantment Creature — Wolf|3|1|Bestow {4}{G}$Enchanted creature gets +3/+1.|
Peregrination|Born of the Gods|132|U|{3}{G}|Sorcery|||Seach your library for up to two basic land cards, reveal those cards, and put one onto the battlefield tapped and the other into your hand. Shuffle your library, then scry 1.|
Pheres-Band Raiders|Born of the Gods|133|U|{5}{G}|Creature — Centaur Warrior|5|5|<i>Inspired</i> Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, put a 3/3 green Centaur enchantment creature token onto the battlefield.|
Pheres-Band Tromper|Born of the Gods|134|C|{3}{G}|Creature — Centaur Warrior|3|3|<i>Inspired</i> Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.|
Pheres-Band Raiders|Born of the Gods|133|U|{5}{G}|Creature — Centaur Warrior|5|5|<i>Inspired</i> - Whenever Pheres-Band Raiders becomes untapped, you may pay {2}{G}. If you do, put a 3/3 green Centaur enchantment creature token onto the battlefield.|
Pheres-Band Tromper|Born of the Gods|134|C|{3}{G}|Creature — Centaur Warrior|3|3|<i>Inspired</i> - Whenever Pheres-Band Tromper becomes untapped, put a +1/+1 counter on it.|
Raised by Wolves|Born of the Gods|135|U|{3}{G}{G}|Enchantment — Aura|||Enchant creature$When Raised by Wolves enters the battlefield, put two 2/2 green Wolf creature tokens onto the battlefield.$Enchanted creature gets +1/+1 for each Wolf you control.|
Satyr Wayfinder|Born of the Gods|136|C|{1}{G}|Creature — Satyr|1|1|When Satyr Wayfinder enters the battlefield, reveal the top four cards of your library. You may put a land card from among them into your hand. Put the rest into your graveyard.|
Scourge of Skola Vale|Born of the Gods|137|R|{2}{G}|Creature — Hydra|0|0|Trample$Scourge of Skola Vale enters the battlefield with two +1/+1 counters on it.${T}, Sacrifice another creature: Put a number of +1/+1 counters on Scourge of Skola Vale equal to the sacrificed creature's toughness.|
@ -23041,7 +23041,7 @@ Setessan Starbreaker|Born of the Gods|139|C|{3}{G}|Creature
Skyreaping|Born of the Gods|140|U|{1}{G}|Sorcery|||Skyreaping deals damage to each creature with flying equal to your devotion to green.|
Snake of the Golden Grove|Born of the Gods|141|C|{4}{G}|Creature — Snake|4|4|Tribute 3 <i><i>(As this creature enters the battlefield, an opponent of your choice may place three +1/+1 counters on it.)</i></i>$When Snake of the Golden Grove enters the battlefield, if tribute wasn't paid, you gain 4 life.|
Swordwise Centaur|Born of the Gods|142|C|{G}{G}|Creature — Centaur Warrior|3|2||
Unravel the Æther|Born of the Gods|143|U|{1}{G}|Instant|||Choose target artifact or enchantment. Its owner shuffles it into his or her library.|
Unravel the AEther|Born of the Gods|143|U|{1}{G}|Instant|||Choose target artifact or enchantment. Its owner shuffles it into his or her library.|
Chromanticore|Born of the Gods|144|M|{W}{U}{B}{R}{G}|Enchantment Creature — Manticore|4|4|Bestow {2}{W}{U}{B}{R}{G}$Flying, first strike, vigilance, trample, lifelink$Enchanted creature gets +4/+4 and has flying, first strike, vigilance, trample and lifelink.|
Ephara, God of the Polis|Born of the Gods|145|M|{2}{W}{U}|Legendary Enchantment Creature — God|6|5|Indestructible$As long as your devotion to white and blue is less than seven, Ephara isn't a creature.$At the beginning of each upkeep, if you had another creature enter the battlefield under your control last turn, draw a card.|
Ephara's Enlightenment|Born of the Gods|146|U|{1}{W}{U}|Enchantment — Aura|||Enchant creature$When Ephara's Enlightenment enters the battlefield, put a +1/+1 counter on enchanted creature.$Enchanted creature has flying.$Whenever a creature enters the battlefield under your control, you may return Ephara's Enlightenment to its owner's hand.|
@ -23053,7 +23053,7 @@ Mogis, God of Slaughter|Born of the Gods|151|M|{2}{B}{R}|Legendary Enchantment C
Phenax, God of Deception|Born of the Gods|152|M|{3}{U}{B}|Legendary Enchantment Creature — God|4|7|Indestructible$As long as your devotion to blue and black is less than seven, Phenax isn't a creature.$Creatures you control have "{T}: Target player puts the top X cards of his or her library into his or her graveyard, where X is this creature's toughness."|
Ragemonger|Born of the Gods|153|U|{1}{B}{R}|Creature — Minotaur Shaman|2|3|Minotaur spells you cast cost {B}{R} less to cast. This effect reduces only the amount of colored mana you pay. <i>(For example, if you cast a Minotaur spell with mana cost {2}{R}, it costs {2} to cast.)</i>|
Reap What Is Sown|Born of the Gods|154|U|{1}{G}{W}|Instant|||Put a +1/+1 counter on each of up to three target creatures.|
Siren of the Silent Song|Born of the Gods|155|U|{1}{U}{B}|Creature — Zombie Siren|2|1|Flying$<i>Inspired</i> Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of his or her library into his or her graveyard.|
Siren of the Silent Song|Born of the Gods|155|U|{1}{U}{B}|Creature — Zombie Siren|2|1|Flying$<i>Inspired</i> - Whenever Siren of the Silent Song becomes untapped, each opponent discards a card, then puts the top card of his or her library into his or her graveyard.|
Xenagos, God of Revels|Born of the Gods|156|M|{3}{R}{G}|Legendary Enchantment Creature — God|6|5|Indestructible$As long as your devotion to red and green is less than seven, Xenagos isn't a creature.$At the beginning of combat on your turn, another target creature you control gains haste and gets +X/+X until end of turn, where X is that creature's power.|
Astral Cornucopia|Born of the Gods|157|R|{X}{X}{X}|Artifact|||Astral Cornucopia enters the battlefield with X charge counters on it.${T}: Choose a color. Add one mana of that color to your mana pool for each charge counter on Astral Cornucopia.|
Gorgon's Head|Born of the Gods|158|U|{1}|Artifact — Equipment|||Equipped creature has deathtouch.$Equip {2}|