This commit is contained in:
xenohedron 2024-02-22 23:41:10 -05:00
parent 504889b7b4
commit 3598b79adc
3 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ public final class AgentFrankHorrigan extends CardImpl {
// Whenever Agent Frank Horrigan enters the battlefield or attacks, proliferate twice.
Ability ability = new EntersBattlefieldOrAttacksSourceTriggeredAbility(new ProliferateEffect(false));
ability.addEffect(new ProliferateEffect().setText("twice"));
ability.addEffect(new ProliferateEffect().setText(" twice"));
this.addAbility(ability);
}

View file

@ -51,7 +51,7 @@ public final class KellanInquisitiveProdigy extends AdventureCard {
// Tail the Suspect
// Investigate. You may play an additional land this turn.
this.getSpellCard().getSpellAbility().addEffect(new InvestigateEffect());
this.getSpellCard().getSpellAbility().addEffect(new InvestigateEffect(false));
this.getSpellCard().getSpellAbility().addEffect(new PlayAdditionalLandsControllerEffect(1, Duration.EndOfTurn));
this.finalizeAdventure();

View file

@ -32,7 +32,7 @@ import java.util.UUID;
public final class TesakJudithsHellhound extends CardImpl {
private static final FilterCreaturePermanent filter1 = new FilterCreaturePermanent(SubType.DOG, "Dogs");
private static final FilterControlledCreaturePermanent filter2 = new FilterControlledCreaturePermanent("Creatures you control with counters on them");
private static final FilterControlledCreaturePermanent filter2 = new FilterControlledCreaturePermanent("Creatures you control with counters on them");
private static final FilterCard filter3 = new FilterCreatureCard();
static {