[LTC] Implement Lossarnach Captain

This commit is contained in:
theelk801 2023-06-19 08:37:59 -04:00
parent 0bf70260b8
commit 87ad9f5121
2 changed files with 62 additions and 0 deletions

View file

@ -0,0 +1,61 @@
package mage.cards.l;
import mage.MageInt;
import mage.abilities.Ability;
import mage.abilities.common.BeginningOfUpkeepTriggeredAbility;
import mage.abilities.common.EntersBattlefieldThisOrAnotherTriggeredAbility;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.TapTargetEffect;
import mage.abilities.keyword.FirstStrikeAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.constants.TargetController;
import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.game.permanent.token.HumanSoldierToken;
import mage.target.common.TargetOpponentsCreaturePermanent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class LossarnachCaptain extends CardImpl {
private static final FilterPermanent filter = new FilterControlledPermanent(SubType.HUMAN, "Human");
public LossarnachCaptain(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.SOLDIER);
this.power = new MageInt(3);
this.toughness = new MageInt(1);
// First strike
this.addAbility(FirstStrikeAbility.getInstance());
// Whenever Lossarnach Captain or another Human enters the battlefield under your control, tap target creature an opponent controls.
Ability ability = new EntersBattlefieldThisOrAnotherTriggeredAbility(
new TapTargetEffect(), filter, false, true
);
ability.addTarget(new TargetOpponentsCreaturePermanent());
this.addAbility(ability);
// At the beginning of your upkeep, create a 1/1 white Human Soldier creature token.
this.addAbility(new BeginningOfUpkeepTriggeredAbility(
new CreateTokenEffect(new HumanSoldierToken()), TargetController.YOU, false
));
}
private LossarnachCaptain(final LossarnachCaptain card) {
super(card);
}
@Override
public LossarnachCaptain copy() {
return new LossarnachCaptain(this);
}
}

View file

@ -144,6 +144,7 @@ public final class TalesOfMiddleEarthCommander extends ExpansionSet {
cards.add(new SetCardInfo("Lignify", 252, Rarity.COMMON, mage.cards.l.Lignify.class));
cards.add(new SetCardInfo("Living Death", 203, Rarity.RARE, mage.cards.l.LivingDeath.class));
cards.add(new SetCardInfo("Lonely Sandbar", 319, Rarity.UNCOMMON, mage.cards.l.LonelySandbar.class));
cards.add(new SetCardInfo("Lossarnach Captain", 16, Rarity.RARE, mage.cards.l.LossarnachCaptain.class));
cards.add(new SetCardInfo("Marshal's Anthem", 172, Rarity.RARE, mage.cards.m.MarshalsAnthem.class));
cards.add(new SetCardInfo("Mentor of the Meek", 173, Rarity.RARE, mage.cards.m.MentorOfTheMeek.class));
cards.add(new SetCardInfo("Merciless Executioner", 204, Rarity.UNCOMMON, mage.cards.m.MercilessExecutioner.class));