forked from External/mage
Some rework to Framework.
This commit is contained in:
parent
bdd7cc48d1
commit
32fb2507c3
101 changed files with 426 additions and 497 deletions
|
|
@ -43,8 +43,17 @@ import mage.players.Player;
|
|||
public class ReturnToBattlefieldUnderYourControlAttachedEffect extends OneShotEffect {
|
||||
|
||||
public ReturnToBattlefieldUnderYourControlAttachedEffect() {
|
||||
this("that card");
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param objectText text for the object to return (default: "that card") if
|
||||
* you use constructor without this param
|
||||
*/
|
||||
public ReturnToBattlefieldUnderYourControlAttachedEffect(String objectText) {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "return that card to the battlefield under your control";
|
||||
staticText = "return " + objectText + " to the battlefield under your control";
|
||||
}
|
||||
|
||||
public ReturnToBattlefieldUnderYourControlAttachedEffect(final ReturnToBattlefieldUnderYourControlAttachedEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue