Merge pull request #4802 from rscoates/dominariaBugFixes

Dominaria bug fixes
This commit is contained in:
LevelX2 2018-04-19 22:07:01 +02:00 committed by GitHub
commit 018d617df7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -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);

View file

@ -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));