mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Ephara, God of thePolis - Fixed that the draw effect was applied to the active player.
This commit is contained in:
parent
3d95849c10
commit
ed829a792f
2 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ public class EpharaGodOfThePolis extends CardImpl {
|
|||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, effect));
|
||||
// At the beginning of each upkeep, if you had another creature enter the battlefield under your control last turn, draw a card.
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), TargetController.ANY, false),
|
||||
new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new DrawCardSourceControllerEffect(1), TargetController.ANY, false, false),
|
||||
HadAnotherCreatureEnterTheBattlefieldCondition.getInstance(),
|
||||
"At the beginning of each upkeep, if you had another creature enter the battlefield under your control last turn, draw a card."),
|
||||
new PermanentsEnteredBattlefieldWatcher());
|
||||
|
|
|
@ -49,7 +49,7 @@ import mage.game.permanent.token.Token;
|
|||
public class Ophiomancer extends CardImpl {
|
||||
|
||||
public Ophiomancer(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Shaman");
|
||||
|
||||
|
@ -58,7 +58,7 @@ public class Ophiomancer extends CardImpl {
|
|||
|
||||
// At the beginning of each upkeep, if you control no Snakes, create a 1/1 black Snake creature token with deathtouch.
|
||||
this.addAbility(new ConditionalTriggeredAbility(
|
||||
new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new OphiomancerSnakeToken()), TargetController.ANY, false),
|
||||
new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new OphiomancerSnakeToken()), TargetController.ANY, false, false),
|
||||
new PermanentsOnTheBattlefieldCondition(new FilterCreaturePermanent("Snake", "no Snakes"), PermanentsOnTheBattlefieldCondition.CountType.EQUAL_TO, 0),
|
||||
"At the beginning of each upkeep, if you control no Snakes, create a 1/1 black Snake creature token with deathtouch."));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue