diff --git a/Mage.Sets/src/mage/cards/h/HonorboundPage.java b/Mage.Sets/src/mage/cards/h/HonorboundPage.java new file mode 100644 index 000000000000..a379663ca796 --- /dev/null +++ b/Mage.Sets/src/mage/cards/h/HonorboundPage.java @@ -0,0 +1,54 @@ +package mage.cards.h; + +import java.util.UUID; +import mage.MageInt; +import mage.constants.SubType; +import mage.target.common.TargetCreaturePermanent; +import mage.abilities.common.EntersPreparedAbility; +import mage.abilities.effects.common.continuous.BoostTargetEffect; +import mage.abilities.effects.common.continuous.GainAbilityTargetEffect; +import mage.abilities.keyword.FirstStrikeAbility; +import mage.abilities.keyword.FlyingAbility; +import mage.cards.CardSetInfo; +import mage.cards.PrepareCard; +import mage.constants.CardType; + +/** + * + * @author muz + */ +public final class HonorboundPage extends PrepareCard { + + public HonorboundPage(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}", "Forum's Favor", new CardType[]{CardType.SORCERY}, "{W}"); + + this.subtype.add(SubType.CAT); + this.subtype.add(SubType.CLERIC); + this.power = new MageInt(3); + this.toughness = new MageInt(3); + + // First strike + this.addAbility(FirstStrikeAbility.getInstance()); + + // This creature enters prepared. + this.addAbility(new EntersPreparedAbility()); + + // Forum's Favor + // Sorcery {W} + // Target creature gets +1/+0 and gains flying until end of turn. + this.getSpellCard().getSpellAbility().addEffect(new BoostTargetEffect(1, 0) + .setText("target creature gets +1/+0")); + this.getSpellCard().getSpellAbility().addEffect(new GainAbilityTargetEffect(FlyingAbility.getInstance()) + .setText("and gains flying until end of turn")); + this.getSpellCard().getSpellAbility().addTarget(new TargetCreaturePermanent()); + } + + private HonorboundPage(final HonorboundPage card) { + super(card); + } + + @Override + public HonorboundPage copy() { + return new HonorboundPage(this); + } +} diff --git a/Mage.Sets/src/mage/sets/SecretsOfStrixhaven.java b/Mage.Sets/src/mage/sets/SecretsOfStrixhaven.java index 32cc6a86e277..4135e083c6b9 100644 --- a/Mage.Sets/src/mage/sets/SecretsOfStrixhaven.java +++ b/Mage.Sets/src/mage/sets/SecretsOfStrixhaven.java @@ -142,6 +142,7 @@ private SecretsOfStrixhaven() { cards.add(new SetCardInfo("Harsh Annotation", 18, Rarity.UNCOMMON, mage.cards.h.HarshAnnotation.class)); cards.add(new SetCardInfo("Heated Argument", 118, Rarity.COMMON, mage.cards.h.HeatedArgument.class)); cards.add(new SetCardInfo("Homesickness", 53, Rarity.UNCOMMON, mage.cards.h.Homesickness.class)); + cards.add(new SetCardInfo("Honorbound Page", 19, Rarity.COMMON, mage.cards.h.HonorboundPage.class)); cards.add(new SetCardInfo("Hungry Graffalon", 151, Rarity.COMMON, mage.cards.h.HungryGraffalon.class)); cards.add(new SetCardInfo("Hydro-Channeler", 54, Rarity.COMMON, mage.cards.h.HydroChanneler.class)); cards.add(new SetCardInfo("Imperious Inkmage", 195, Rarity.COMMON, mage.cards.i.ImperiousInkmage.class));