- Made Boomerang cascadable and it should work correctly with Isochron Scepter.

- Fixed some funky characters in Isochron Scepter's text.
This commit is contained in:
jendave
2011-08-06 03:32:28 +00:00
parent 7c057cd361
commit 65ed74e308

View File

@@ -11455,7 +11455,13 @@ public class CardFactory implements NewConstants {
AllZone.Display.showMessage("Cannot target this card (Shroud? Protection?)."); AllZone.Display.showMessage("Cannot target this card (Shroud? Protection?).");
} else if(zone.is(Constant.Zone.Play)) { } else if(zone.is(Constant.Zone.Play)) {
spell.setTargetCard(c); spell.setTargetCard(c);
stopSetNext(new Input_PayManaCost(spell)); if (this.isFree()) {
this.setFree(false);
AllZone.Stack.add(spell);
stop();
}
else
stopSetNext(new Input_PayManaCost(spell));
} }
} }
};//Input };//Input
@@ -16654,9 +16660,6 @@ public class CardFactory implements NewConstants {
final Ability_Tap freeCast = new Ability_Tap(card, "2") final Ability_Tap freeCast = new Ability_Tap(card, "2")
{ {
/**
*
*/
private static final long serialVersionUID = 4455819149429678456L; private static final long serialVersionUID = 4455819149429678456L;
@Override @Override
@@ -16694,7 +16697,7 @@ public class CardFactory implements NewConstants {
@Override @Override
public void showMessage() { public void showMessage() {
AllZone.Display.showMessage("Your may exile an Instant with converted mana cost two or less from your hand"); AllZone.Display.showMessage("You may exile an Instant with converted mana cost two or less from your hand");
ButtonUtil.enableOnlyCancel(); ButtonUtil.enableOnlyCancel();
} }
@@ -16742,7 +16745,7 @@ public class CardFactory implements NewConstants {
private static final long serialVersionUID = 9202753910259054021L; private static final long serialVersionUID = 9202753910259054021L;
public void execute() { public void execute() {
ability.setStackDescription("Imprint " + card.getController() ability.setStackDescription("Imprint - " + card.getController()
+ " may exile an instant card with converted mana cost 2 or less from their hand."); + " may exile an instant card with converted mana cost 2 or less from their hand.");
AllZone.Stack.add(ability); AllZone.Stack.add(ability);
} }