mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[LTR] a few fixes
This commit is contained in:
parent
ab0c7dbc24
commit
74920afd71
3 changed files with 4 additions and 4 deletions
|
@ -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"));
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue