Clean up various Control Magic effects

This commit is contained in:
LoneFox 2015-12-14 12:51:23 +02:00
parent 6106bbe7da
commit acb2c47207
20 changed files with 78 additions and 102 deletions

View file

@ -15,8 +15,12 @@ import mage.game.permanent.Permanent;
public class ControlEnchantedEffect extends ContinuousEffectImpl {
public ControlEnchantedEffect() {
this("creature");
}
public ControlEnchantedEffect(String targetDescription) {
super(Duration.WhileOnBattlefield, Outcome.GainControl);
staticText = "You control enchanted creature";
staticText = "You control enchanted " + targetDescription;
}
public ControlEnchantedEffect(final ControlEnchantedEffect effect) {