mirror of
https://github.com/correl/mage.git
synced 2025-04-01 19:07:57 -09:00
Minor rule text changes.
This commit is contained in:
parent
e112ea4f8d
commit
44708e6c4b
4 changed files with 5 additions and 5 deletions
Mage.Sets/src/mage/sets
Mage/src/mage/abilities/effects/common
|
@ -100,7 +100,7 @@ class KarnLiberatedEffect extends OneShotEffect<KarnLiberatedEffect> {
|
|||
public KarnLiberatedEffect(UUID exileId) {
|
||||
super(Outcome.ExtraTurn);
|
||||
this.exileId = exileId;
|
||||
this.staticText = "Restart the game, leaving in exile all non-Aura permanent cards exiled with {this}. Then put those cards onto the battlefield under your control.";
|
||||
this.staticText = "Restart the game, leaving in exile all non-Aura permanent cards exiled with {this}. Then put those cards onto the battlefield under your control";
|
||||
}
|
||||
|
||||
public KarnLiberatedEffect(final KarnLiberatedEffect effect) {
|
||||
|
|
|
@ -81,7 +81,7 @@ class RelicOfProgenitusEffect extends OneShotEffect<RelicOfProgenitusEffect> {
|
|||
|
||||
public RelicOfProgenitusEffect() {
|
||||
super(Outcome.Exile);
|
||||
this.staticText = "Target player exiles a card from his or her graveyard.";
|
||||
this.staticText = "Target player exiles a card from his or her graveyard";
|
||||
}
|
||||
|
||||
public RelicOfProgenitusEffect(final RelicOfProgenitusEffect effect) {
|
||||
|
@ -116,7 +116,7 @@ class RelicOfProgenitusEffect2 extends OneShotEffect<RelicOfProgenitusEffect2> {
|
|||
|
||||
public RelicOfProgenitusEffect2() {
|
||||
super(Constants.Outcome.Detriment);
|
||||
staticText = "Exile all cards from all graveyards.";
|
||||
staticText = "Exile all cards from all graveyards";
|
||||
}
|
||||
|
||||
public RelicOfProgenitusEffect2(final RelicOfProgenitusEffect2 effect) {
|
||||
|
|
|
@ -43,7 +43,7 @@ public class PreventCombatDamageFromSourceEffect extends PreventionEffectImpl<Pr
|
|||
|
||||
public PreventCombatDamageFromSourceEffect(Duration duration) {
|
||||
super(duration);
|
||||
staticText = "Prevent all combat damage that would be dealt by {this} " + duration.toString();
|
||||
staticText = "Prevent all combat damage that would be dealt by {this}" + duration.toString();
|
||||
}
|
||||
|
||||
public PreventCombatDamageFromSourceEffect(final PreventCombatDamageFromSourceEffect effect) {
|
||||
|
|
|
@ -43,7 +43,7 @@ public class PreventCombatDamageSourceEffect extends PreventionEffectImpl<Preven
|
|||
|
||||
public PreventCombatDamageSourceEffect(Duration duration) {
|
||||
super(duration);
|
||||
staticText = "Prevent all combat damage that would be dealt to {this} " + duration.toString();
|
||||
staticText = "Prevent all combat damage that would be dealt to {this}" + duration.toString();
|
||||
}
|
||||
|
||||
public PreventCombatDamageSourceEffect(final PreventCombatDamageSourceEffect effect) {
|
||||
|
|
Loading…
Add table
Reference in a new issue