[MOM] Implement Joyful Stormsculptor

This commit is contained in:
theelk801 2023-04-03 19:58:20 -04:00
parent 0c00125dfe
commit 4b71941d21
4 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,19 @@
package mage.filter.predicate.permanent;
import mage.filter.predicate.ObjectSourcePlayer;
import mage.filter.predicate.ObjectSourcePlayerPredicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
* @author TheElk801
*/
public enum ProtectedByOpponentPredicate implements ObjectSourcePlayerPredicate<Permanent> {
instance;
@Override
public boolean apply(ObjectSourcePlayer<Permanent> input, Game game) {
// TODO: Implement this
return false;
}
}

View file

@ -0,0 +1,33 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.Arrays;
/**
* @author TheElk801
*/
public final class Elemental11BlueRedToken extends TokenImpl {
public Elemental11BlueRedToken() {
super("Elemental Token", "1/1 blue and red Elemental creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.ELEMENTAL);
color.setBlue(true);
color.setRed(true);
power = new MageInt(1);
toughness = new MageInt(1);
availableImageSetCodes = Arrays.asList("MOM");
}
public Elemental11BlueRedToken(final Elemental11BlueRedToken token) {
super(token);
}
public Elemental11BlueRedToken copy() {
return new Elemental11BlueRedToken(this);
}
}