[NEC] Implemented Yoshimaru, Ever Faithful

This commit is contained in:
Evan Kranzler 2022-02-07 18:11:38 -05:00
parent 869230d75d
commit 79917be6b4
2 changed files with 57 additions and 0 deletions

View file

@ -0,0 +1,56 @@
package mage.cards.y;
import mage.MageInt;
import mage.abilities.common.EntersBattlefieldControlledTriggeredAbility;
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
import mage.abilities.keyword.PartnerAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.SuperType;
import mage.counters.CounterType;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.mageobject.AnotherPredicate;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class YoshimaruEverFaithful extends CardImpl {
private static final FilterPermanent filter = new FilterControlledPermanent("another legendary permanent");
static {
filter.add(AnotherPredicate.instance);
filter.add(SuperType.LEGENDARY.getPredicate());
}
public YoshimaruEverFaithful(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}");
this.addSuperType(SuperType.LEGENDARY);
this.subtype.add(SubType.DOG);
this.power = new MageInt(1);
this.toughness = new MageInt(1);
// Whenever another legendary permanent enters the battlefield under your control, put a +1/+1 counter on Yoshimaru, Ever Faithful.
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance()), filter
));
// Partner
this.addAbility(PartnerAbility.getInstance());
}
private YoshimaruEverFaithful(final YoshimaruEverFaithful card) {
super(card);
}
@Override
public YoshimaruEverFaithful copy() {
return new YoshimaruEverFaithful(this);
}
}

View file

@ -26,5 +26,6 @@ public final class NeonDynastyCommander extends ExpansionSet {
cards.add(new SetCardInfo("Myojin of Towering Might", 38, Rarity.RARE, mage.cards.m.MyojinOfToweringMight.class));
cards.add(new SetCardInfo("Shorikai, Genesis Engine", 4, Rarity.MYTHIC, mage.cards.s.ShorikaiGenesisEngine.class));
cards.add(new SetCardInfo("Universal Surveillance", 17, Rarity.RARE, mage.cards.u.UniversalSurveillance.class));
cards.add(new SetCardInfo("Yoshimaru, Ever Faithful", 32, Rarity.MYTHIC, mage.cards.y.YoshimaruEverFaithful.class));
}
}