mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Merge pull request #4802 from rscoates/dominariaBugFixes
Dominaria bug fixes
This commit is contained in:
commit
018d617df7
2 changed files with 3 additions and 2 deletions
|
@ -72,7 +72,8 @@ public class RonaDiscipleOfGix extends CardImpl {
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
||||||
// When Rona, Disciple of Gix enters the battlefield, you may exile target historic card from your graveyard.
|
// When Rona, Disciple of Gix enters the battlefield, you may exile target historic card from your graveyard.
|
||||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ExileTargetEffect().setToSourceExileZone(true), true);
|
String abilityText = "When Rona, Disciple of Gix enters the battlefield, you may exile target historic card from your graveyard.";
|
||||||
|
Ability ability = new EntersBattlefieldTriggeredAbility(new ExileTargetEffect().setToSourceExileZone(true), true, abilityText);
|
||||||
ability.addTarget(new TargetCardInYourGraveyard(new FilterHistoricCard()));
|
ability.addTarget(new TargetCardInYourGraveyard(new FilterHistoricCard()));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class WarlordsFury extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{R}");
|
||||||
|
|
||||||
// Creatures you control gain first strike until end of turn.
|
// Creatures you control gain first strike until end of turn.
|
||||||
getSpellAbility().addEffect(new GainAbilityAllEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent(), "Creatures you control gain trample until end of turn"));
|
getSpellAbility().addEffect(new GainAbilityAllEffect(FirstStrikeAbility.getInstance(), Duration.EndOfTurn, new FilterControlledCreaturePermanent(), "Creatures you control gain first strike until end of turn"));
|
||||||
|
|
||||||
// Draw a card.
|
// Draw a card.
|
||||||
getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
getSpellAbility().addEffect(new DrawCardSourceControllerEffect(1));
|
||||||
|
|
Loading…
Reference in a new issue