1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-10 09:11:04 -09:00

Implemented Ayula, Queen Among Bears

This commit is contained in:
Evan Kranzler 2019-05-23 17:41:10 -04:00
parent 3374b1bb30
commit 9f71e2d7f3
2 changed files with 73 additions and 0 deletions

View file

@ -0,0 +1,72 @@
package mage.cards.a;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.common.EntersBattlefieldControlledTriggeredAbility;
import mage.abilities.effects.common.FightTargetsEffect;
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.constants.TargetController;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.mageobject.SubtypePredicate;
import mage.filter.predicate.permanent.ControllerPredicate;
import mage.target.TargetPermanent;
import mage.target.common.TargetControlledPermanent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class AyulaQueenAmongBears extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent(SubType.BEAR, "another Bear");
private static final FilterPermanent filter2 = new FilterPermanent(SubType.BEAR, "Bear");
private static final FilterControlledPermanent filter3 = new FilterControlledPermanent("Bear you controls");
private static final FilterPermanent filter4 = new FilterCreaturePermanent("creature you don't control");
static {
filter3.add(new SubtypePredicate(SubType.BEAR));
filter4.add(new ControllerPredicate(TargetController.NOT_YOU));
}
public AyulaQueenAmongBears(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.BEAR);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Whenever another Bear enters the battlefield under your control, choose one
// Put two +1/+1 counters on target Bear.
Ability ability = new EntersBattlefieldControlledTriggeredAbility(
new AddCountersTargetEffect(CounterType.P1P1.createInstance(2)), filter
);
ability.addTarget(new TargetPermanent(filter2));
// Target Bear you control fights target creature you don't control.
Mode mode = new Mode(new FightTargetsEffect());
mode.addTarget(new TargetControlledPermanent(filter3));
mode.addTarget(new TargetPermanent(filter4));
ability.addMode(mode);
this.addAbility(ability);
}
private AyulaQueenAmongBears(final AyulaQueenAmongBears card) {
super(card);
}
@Override
public AyulaQueenAmongBears copy() {
return new AyulaQueenAmongBears(this);
}
}

View file

@ -29,6 +29,7 @@ public final class ModernHorizons extends ExpansionSet {
cards.add(new SetCardInfo("Abominable Treefolk", 194, Rarity.UNCOMMON, mage.cards.a.AbominableTreefolk.class)); cards.add(new SetCardInfo("Abominable Treefolk", 194, Rarity.UNCOMMON, mage.cards.a.AbominableTreefolk.class));
cards.add(new SetCardInfo("Altar of Dementia", 218, Rarity.RARE, mage.cards.a.AltarOfDementia.class)); cards.add(new SetCardInfo("Altar of Dementia", 218, Rarity.RARE, mage.cards.a.AltarOfDementia.class));
cards.add(new SetCardInfo("Ayula's Influence", 156, Rarity.RARE, mage.cards.a.AyulasInfluence.class)); cards.add(new SetCardInfo("Ayula's Influence", 156, Rarity.RARE, mage.cards.a.AyulasInfluence.class));
cards.add(new SetCardInfo("Ayula, Queen Among Bears", 155, Rarity.RARE, mage.cards.a.AyulaQueenAmongBears.class));
cards.add(new SetCardInfo("Cabal Therapist", 80, Rarity.RARE, mage.cards.c.CabalTherapist.class)); cards.add(new SetCardInfo("Cabal Therapist", 80, Rarity.RARE, mage.cards.c.CabalTherapist.class));
cards.add(new SetCardInfo("Changeling Outcast", 82, Rarity.COMMON, mage.cards.c.ChangelingOutcast.class)); cards.add(new SetCardInfo("Changeling Outcast", 82, Rarity.COMMON, mage.cards.c.ChangelingOutcast.class));
cards.add(new SetCardInfo("Chillerpillar", 43, Rarity.COMMON, mage.cards.c.Chillerpillar.class)); cards.add(new SetCardInfo("Chillerpillar", 43, Rarity.COMMON, mage.cards.c.Chillerpillar.class));