text fixes [ALA] [CON] [ARB] (#11036)

* Tweak verify for double cycling
* small fixes
* do not verify some GUI-related rules.
This commit is contained in:
Susucre 2023-08-27 02:46:49 +02:00 committed by GitHub
parent 2ec4401cee
commit 52eaa600ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 57 additions and 9 deletions

View file

@ -13,8 +13,14 @@ import mage.players.Player;
public class RevealTopLandToBattlefieldElseHandEffect extends OneShotEffect {
public RevealTopLandToBattlefieldElseHandEffect() {
this("that card");
}
public RevealTopLandToBattlefieldElseHandEffect(String cardTextOtherwise) {
super(Outcome.DrawCard);
this.staticText = "reveal the top card of your library. If it's a land card, put it onto the battlefield. Otherwise, put that card into your hand";
this.staticText = "reveal the top card of your library. "
+ "If it's a land card, put it onto the battlefield. "
+ "Otherwise, put " + cardTextOtherwise + " into your hand";
}
protected RevealTopLandToBattlefieldElseHandEffect(final RevealTopLandToBattlefieldElseHandEffect effect) {