mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- 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:
@@ -11455,6 +11455,12 @@ 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);
|
||||||
|
if (this.isFree()) {
|
||||||
|
this.setFree(false);
|
||||||
|
AllZone.Stack.add(spell);
|
||||||
|
stop();
|
||||||
|
}
|
||||||
|
else
|
||||||
stopSetNext(new Input_PayManaCost(spell));
|
stopSetNext(new Input_PayManaCost(spell));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user