mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
* Prophet of Kruphix - Fixed that the triggered untap ability was missing.
This commit is contained in:
parent
fdca147d4d
commit
24baf63cf1
3 changed files with 28 additions and 10 deletions
|
|
@ -58,7 +58,6 @@ public class GracefulAntelope extends CardImpl<GracefulAntelope> {
|
|||
// Plainswalk
|
||||
this.addAbility(new PlainswalkAbility());
|
||||
// Whenever Graceful Antelope deals combat damage to a player, you may have target land become a Plains until Graceful Antelope leaves the battlefield.
|
||||
//Ability ability = new SimpleTriggeredAbility(Zone.BATTLEFIELD, new BecomesBasicLandTargetEffect(Duration.WhileOnBattlefield), new TapSourceCost());
|
||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new BecomesBasicLandTargetEffect(Duration.WhileOnBattlefield,"Plains"), true);
|
||||
Target target = new TargetLandPermanent();
|
||||
target.setRequired(true);
|
||||
|
|
|
|||
|
|
@ -74,7 +74,7 @@ public class ProphetOfKruphix extends CardImpl<ProphetOfKruphix> {
|
|||
this.toughness = new MageInt(3);
|
||||
|
||||
// Untap all creatures and lands you control during each other player's untap step.
|
||||
Effect effect = new UntapAllControllerEffect(filter, "Untap all creatures and lands you control during each other player's untap step");
|
||||
Effect effect = new UntapAllControllerEffect(filter, "Untap all creatures and lands you control");
|
||||
this.addAbility(new BeginningOfUntapTriggeredAbility(Zone.BATTLEFIELD, effect, TargetController.NOT_YOU, false));
|
||||
// You may cast creature cards as though they had flash.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ProphetOfKruphixEffect()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue