* Lone Rider - added card hint about conditional;

This commit is contained in:
Oleg Agafonov 2020-11-29 00:11:24 +04:00
parent 3cef33bd5a
commit be73bb782a
2 changed files with 3 additions and 2 deletions

View file

@ -52,7 +52,8 @@ public final class GomaFadaVanguard extends CardImpl {
// Whenever Goma Fada Vanguard attacks, target creature an opponent controls with power less than or equal to the number of Warriors you control can't block this turn.
Ability ability = new AttacksTriggeredAbility(new CantBlockTargetEffect(Duration.EndOfTurn), false);
ability.addTarget(new TargetPermanent(filter));
this.addAbility(ability.addHint(hint));
ability.addHint(hint);
this.addAbility(ability);
}
private GomaFadaVanguard(final GomaFadaVanguard card) {

View file

@ -52,7 +52,7 @@ public final class LoneRider extends CardImpl {
new BeginningOfEndStepTriggeredAbility(
new TransformSourceEffect(true), TargetController.NEXT, false
), condition, ruleText
), new PlayerGainedLifeWatcher());
).addHint(hint), new PlayerGainedLifeWatcher());
}
private LoneRider(final LoneRider card) {