[BRO] Implemented Gix's Command

This commit is contained in:
Daniel Bomar 2022-11-02 20:22:49 -05:00
parent 2d6884c635
commit 867fa64156
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 111 additions and 6 deletions

View file

@ -0,0 +1,106 @@
package mage.cards.g;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.effects.OneShotEffect;
import mage.abilities.effects.common.DestroyAllEffect;
import mage.abilities.effects.common.SacrificeOpponentsEffect;
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
import mage.abilities.keyword.LifelinkAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.cards.CardsImpl;
import mage.constants.CardType;
import mage.constants.ComparisonType;
import mage.constants.Outcome;
import mage.constants.Zone;
import mage.counters.CounterType;
import mage.filter.StaticFilters;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.PowerPredicate;
import mage.filter.predicate.permanent.GreatestPowerControlledPredicate;
import mage.game.Game;
import mage.players.Player;
import mage.target.common.TargetCardInYourGraveyard;
import mage.target.common.TargetCreaturePermanent;
/**
*
* @author weirddan455
*/
public final class GixsCommand extends CardImpl {
private static final FilterCreaturePermanent filter
= new FilterCreaturePermanent("each creature with power 2 or less");
private static final FilterCreaturePermanent filter2
= new FilterCreaturePermanent("creature with the highest power among creatures they control");
static {
filter.add(new PowerPredicate(ComparisonType.FEWER_THAN, 3));
filter2.add(GreatestPowerControlledPredicate.instance);
}
public GixsCommand(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{B}{B}");
// Choose two --
this.getSpellAbility().getModes().setMinModes(2);
this.getSpellAbility().getModes().setMaxModes(2);
// * Put two +1/+1 counter on up to one creature. It gains lifelink until end of turn.
this.getSpellAbility().addEffect(new AddCountersTargetEffect(CounterType.P1P1.createInstance(2)));
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(LifelinkAbility.getInstance())
.setText("It gains lifelink until end of turn"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(0, 1));
// * Destroy each creature with power 2 or less.
this.getSpellAbility().addMode(new Mode(new DestroyAllEffect(filter).setText("Destroy each creature with power 2 or less")));
// * Return up to two creature cards from your graveyard to your hand.
this.getSpellAbility().addMode(new Mode(new GixsCommandReturnEffect()));
// * Each opponent sacrifices a creature with the highest power among creatures they control.
this.getSpellAbility().addMode(new Mode(new SacrificeOpponentsEffect(filter2)));
}
private GixsCommand(final GixsCommand card) {
super(card);
}
@Override
public GixsCommand copy() {
return new GixsCommand(this);
}
}
class GixsCommandReturnEffect extends OneShotEffect {
public GixsCommandReturnEffect() {
super(Outcome.ReturnToHand);
this.staticText = "Return up to two creature cards from your graveyard to your hand";
}
private GixsCommandReturnEffect(final GixsCommandReturnEffect effect) {
super(effect);
}
@Override
public GixsCommandReturnEffect copy() {
return new GixsCommandReturnEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller == null) {
return false;
}
TargetCardInYourGraveyard target = new TargetCardInYourGraveyard(0, 2, StaticFilters.FILTER_CARD_CREATURES_YOUR_GRAVEYARD, true);
controller.chooseTarget(outcome, target, source, game);
return controller.moveCards(new CardsImpl(target.getTargets()), Zone.HAND, source, game);
}
}

View file

@ -64,6 +64,7 @@ public final class TheBrothersWar extends ExpansionSet {
cards.add(new SetCardInfo("Gaea's Courser", 181, Rarity.UNCOMMON, mage.cards.g.GaeasCourser.class));
cards.add(new SetCardInfo("Giant Growth", 183, Rarity.COMMON, mage.cards.g.GiantGrowth.class));
cards.add(new SetCardInfo("Gix's Caress", 96, Rarity.COMMON, mage.cards.g.GixsCaress.class));
cards.add(new SetCardInfo("Gix's Command", 97, Rarity.RARE, mage.cards.g.GixsCommand.class));
cards.add(new SetCardInfo("Gixian Puppeteer", 99, Rarity.RARE, mage.cards.g.GixianPuppeteer.class));
cards.add(new SetCardInfo("Gnawing Vermin", 101, Rarity.UNCOMMON, mage.cards.g.GnawingVermin.class));
cards.add(new SetCardInfo("Go for the Throat", 102, Rarity.UNCOMMON, mage.cards.g.GoForTheThroat.class));

View file

@ -14,12 +14,10 @@ public enum GreatestPowerControlledPredicate implements ObjectSourcePlayerPredic
@Override
public boolean apply(ObjectSourcePlayer<Permanent> input, Game game) {
Permanent creatureWithGreatestPower = input.getObject();
for (Permanent p : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_CONTROLLED_CREATURE, input.getObject().getControllerId(), game)) {
if (p.getPower().getValue() >= creatureWithGreatestPower.getPower().getValue()) {
creatureWithGreatestPower = p;
}
int greatestPower = Integer.MIN_VALUE;
for (Permanent p : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_CONTROLLED_CREATURE, input.getPlayerId(), input.getSource(), game)) {
greatestPower = Math.max(greatestPower, p.getPower().getValue());
}
return (creatureWithGreatestPower == input.getObject());
return input.getObject().getPower().getValue() == greatestPower;
}
}