mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
Text edit and minor cleanup
This commit is contained in:
parent
61f5879d84
commit
f6e7e6d01d
1 changed files with 3 additions and 3 deletions
|
@ -51,9 +51,9 @@ public class EnergyArc extends CardImpl {
|
|||
|
||||
// Untap any number of target creatures. Prevent all combat damage that would be dealt to and dealt by those creatures this turn.
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, Integer.MAX_VALUE));
|
||||
this.getSpellAbility().addEffect(new UntapTargetEffect());
|
||||
this.getSpellAbility().addEffect(new PreventDamageByTargetEffect(Duration.EndOfTurn, true));
|
||||
this.getSpellAbility().addEffect(new PreventDamageToTargetEffect(Duration.EndOfTurn, Integer.MAX_VALUE, true));
|
||||
this.getSpellAbility().addEffect(new UntapTargetEffect().setText("Untap any number of target creatures. "));
|
||||
this.getSpellAbility().addEffect(new PreventDamageByTargetEffect(Duration.EndOfTurn, true).setText("Prevent all combat damage that would be dealt to "));
|
||||
this.getSpellAbility().addEffect(new PreventDamageToTargetEffect(Duration.EndOfTurn, true).setText("and dealt by those creatures this turn."));
|
||||
}
|
||||
|
||||
public EnergyArc(final EnergyArc card) {
|
||||
|
|
Loading…
Reference in a new issue