[C21] Implemented Adrix and Nev, Twincasters

This commit is contained in:
Evan Kranzler 2021-04-06 18:23:08 -04:00
parent 2c72efb63a
commit bcb9e410dd
4 changed files with 89 additions and 11 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities.effects.common.replacement;
import mage.abilities.Ability;
@ -9,17 +8,17 @@ import mage.game.Game;
import mage.game.events.GameEvent;
/**
*
* @author LevelX2
*/
public class CreateTwiceThatManyTokensEffect extends ReplacementEffectImpl {
public CreateTwiceThatManyTokensEffect() {
super(Duration.WhileOnBattlefield, Outcome.Copy);
staticText = "If an effect would create one or more tokens under your control, it creates twice that many of those tokens instead";
staticText = "if one or more tokens would be created under your control, " +
"twice that many of those tokens are created instead";
}
public CreateTwiceThatManyTokensEffect(final CreateTwiceThatManyTokensEffect effect) {
private CreateTwiceThatManyTokensEffect(final CreateTwiceThatManyTokensEffect effect) {
super(effect);
}