some requested fixes

This commit is contained in:
theelk801 2024-04-02 09:53:00 -04:00
parent 4bbdc3c543
commit d46f0f0df4
3 changed files with 3 additions and 3 deletions

View file

@ -46,7 +46,7 @@ public final class DanceOfTheTumbleweeds extends CardImpl {
// + {1} -- Search your library for a basic land card or a Desert card, put it onto the battlefield, then shuffle.
this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(
new TargetCardInLibrary(0, 1, filter), true
new TargetCardInLibrary(0, 1, filter)
));
this.getSpellAbility().withFirstModeCost(new GenericManaCost(1));

View file

@ -91,7 +91,7 @@ class HollowMarauderEffect extends OneShotEffect {
continue;
}
Card card = opponent.discard(1, false, false, source, game).getRandom(game);
if (card != null && card.getManaValue() >= 4) {
if (card == null || card.getManaValue() < 4) {
count++;
}
}

View file

@ -28,7 +28,7 @@ public final class TrashTheTown extends CardImpl {
this.addAbility(new SpreeAbility(this));
// + {2} -- Put two +1/+1 counters on target creature.
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance()));
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance(2)));
this.getSpellAbility().withFirstModeCost(new GenericManaCost(2));
// + {1} -- Target creature gains trample until end of turn.