mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
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:
parent
2ec4401cee
commit
52eaa600ba
5 changed files with 57 additions and 9 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue