Merge pull request #6722 from arcox/track-down-text

Fix Track Down oracle text (#6643)
This commit is contained in:
Oleg Agafonov 2020-06-26 07:55:33 +02:00 committed by GitHub
commit 3d7637b421
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,8 +23,8 @@ public final class TrackDown extends CardImpl {
public TrackDown(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{G}");
// Scry 3, then reveal the top card of your library. If its a creature or land card, draw a card.
this.getSpellAbility().addEffect(new ScryEffect(3));
// Scry 3, then reveal the top card of your library. If it's a creature or land card, draw a card.
this.getSpellAbility().addEffect(new ScryEffect(3).setText("Scry 3,"));
this.getSpellAbility().addEffect(new TrackDownEffect());
}