This commit is contained in:
Loki 2010-11-15 10:22:41 +00:00
parent e8be81cd34
commit 7a54ef231e
3 changed files with 3 additions and 3 deletions

View file

@ -124,6 +124,6 @@ class RiseFromTheGraveEffect extends ContinuousEffectImpl<RiseFromTheGraveEffect
@Override @Override
public String getText(Ability source) { public String getText(Ability source) {
return "That creature is a black Zombie in addition to its other colors and types."; return "That creature is a black Zombie in addition to its other colors and types";
} }
} }

View file

@ -103,7 +103,7 @@ class SilenceEffect extends ReplacementEffectImpl<SilenceEffect> {
@Override @Override
public String getText(Ability source) { public String getText(Ability source) {
return "Your opponents can't cast spells this turn. "; return "Your opponents can't cast spells this turn";
} }
} }

View file

@ -92,6 +92,6 @@ class TimeWarpEffect extends OneShotEffect<TimeWarpEffect> {
@Override @Override
public String getText(Ability source) { public String getText(Ability source) {
return "Target player takes an extra turn after this one."; return "Target player takes an extra turn after this one";
} }
} }