1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-30 01:03:57 -09:00

Fix Ethereal Champion rules text. Closes ()

This commit is contained in:
Sean Walsh 2023-02-19 20:05:25 -06:00 committed by GitHub
parent 4e665d8992
commit e8b458fc30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,7 +29,7 @@ public final class EtherealChampion extends CardImpl {
// Pay 1 life: Prevent the next 1 damage that would be dealt to Ethereal Champion this turn.
Effect effect = new PreventDamageToSourceEffect(Duration.EndOfTurn, 1);
effect.setText("Pay 1 life: Prevent the next 1 damage that would be dealt to {this} this turn");
effect.setText("Prevent the next 1 damage that would be dealt to {this} this turn");
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, effect, new PayLifeCost(1)));
}