mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Clean up various Control Magic effects
This commit is contained in:
parent
6106bbe7da
commit
acb2c47207
20 changed files with 78 additions and 102 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue