[BRO] Implement Weakstone's Subjugation

This commit is contained in:
Evan Kranzler 2022-11-04 09:55:15 -04:00
parent 03e6c15a2a
commit 17bac7fb44
4 changed files with 63 additions and 4 deletions

View file

@ -7,14 +7,17 @@ import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author LevelX
*/
public class TapEnchantedEffect extends OneShotEffect {
public TapEnchantedEffect() {
this("creature");
}
public TapEnchantedEffect(String name) {
super(Outcome.Tap);
staticText = "tap enchanted creature";
staticText = "tap enchanted " + name;
}
public TapEnchantedEffect(final TapEnchantedEffect effect) {