[LTR] a few fixes

This commit is contained in:
theelk801 2023-06-07 22:17:40 -04:00
parent ab0c7dbc24
commit 74920afd71
3 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ public final class AssaultOnOsgiliath extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{X}{R}{R}{R}");
// Amass Orcs X, then Goblins and Orcs you control gain double strike and haste until end of turn.
this.getSpellAbility().addEffect(new AssimilateEssenceEffect());
this.getSpellAbility().addEffect(new AssaultOnOsgiliathEffect());
this.getSpellAbility().addEffect(new GainAbilityControlledEffect(
DoubleStrikeAbility.getInstance(), Duration.EndOfTurn, filter
).setText(", then Goblins and Orcs you control gain double strike"));

View file

@ -41,7 +41,7 @@ public final class EaglesOfTheNorth extends CardImpl {
ability.addEffect(new GainAbilityControlledEffect(
FirstStrikeAbility.getInstance(), Duration.EndOfTurn,
StaticFilters.FILTER_PERMANENT_CREATURE
).setText("gain first strike until end of turn"));
).setText("and gain first strike until end of turn"));
this.addAbility(ability);
// Plainscycling {1}

View file

@ -73,7 +73,7 @@ enum RangersOfIthilienPredicate implements ObjectSourcePlayerPredicate<Permanent
.filter(Objects::nonNull)
.map(MageObject::getPower)
.map(MageInt::getValue)
.map(i -> i >= input.getObject().getPower().getValue())
.map(i -> i > input.getObject().getPower().getValue())
.orElse(false);
}
}
}