mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
[OTJ] Implement Beastbond Outcaster
This commit is contained in:
parent
c06159c4c6
commit
b5ece91812
2 changed files with 50 additions and 0 deletions
49
Mage.Sets/src/mage/cards/b/BeastbondOutcaster.java
Normal file
49
Mage.Sets/src/mage/cards/b/BeastbondOutcaster.java
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.condition.common.FerociousCondition;
|
||||
import mage.abilities.decorator.ConditionalInterveningIfTriggeredAbility;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.hint.common.FerociousHint;
|
||||
import mage.abilities.keyword.PlotAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BeastbondOutcaster extends CardImpl {
|
||||
|
||||
public BeastbondOutcaster(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.HUMAN);
|
||||
this.subtype.add(SubType.DRUID);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// When Beastbond Outcaster enters the battlefield, if you control a creature with power 4 or greater, draw a card.
|
||||
this.addAbility(new ConditionalInterveningIfTriggeredAbility(
|
||||
new EntersBattlefieldTriggeredAbility(new DrawCardSourceControllerEffect(1)),
|
||||
FerociousCondition.instance, "When {this} enters the battlefield, " +
|
||||
"if you control a creature with power 4 or greater, draw a card."
|
||||
).addHint(FerociousHint.instance));
|
||||
|
||||
// Plot {1}{G}
|
||||
this.addAbility(new PlotAbility(this, "{1}{G}"));
|
||||
}
|
||||
|
||||
private BeastbondOutcaster(final BeastbondOutcaster card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BeastbondOutcaster copy() {
|
||||
return new BeastbondOutcaster(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -31,6 +31,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Arid Archway", 252, Rarity.UNCOMMON, mage.cards.a.AridArchway.class));
|
||||
cards.add(new SetCardInfo("Armored Armadillo", 3, Rarity.COMMON, mage.cards.a.ArmoredArmadillo.class));
|
||||
cards.add(new SetCardInfo("At Knifepoint", 193, Rarity.UNCOMMON, mage.cards.a.AtKnifepoint.class));
|
||||
cards.add(new SetCardInfo("Beastbond Outcaster", 154, Rarity.UNCOMMON, mage.cards.b.BeastbondOutcaster.class));
|
||||
cards.add(new SetCardInfo("Blooming Marsh", 266, Rarity.RARE, mage.cards.b.BloomingMarsh.class));
|
||||
cards.add(new SetCardInfo("Botanical Sanctum", 267, Rarity.RARE, mage.cards.b.BotanicalSanctum.class));
|
||||
cards.add(new SetCardInfo("Bovine Intervention", 6, Rarity.UNCOMMON, mage.cards.b.BovineIntervention.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue