mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[OTJ] Implement Bristly Bill, Spine Sower
This commit is contained in:
parent
e8d695d880
commit
26ac305a7f
2 changed files with 55 additions and 0 deletions
54
Mage.Sets/src/mage/cards/b/BristlyBillSpineSower.java
Normal file
54
Mage.Sets/src/mage/cards/b/BristlyBillSpineSower.java
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.LandfallAbility;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.abilities.effects.common.counter.DoubleCounterOnEachPermanentEffect;
|
||||
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.StaticFilters;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class BristlyBillSpineSower extends CardImpl {
|
||||
|
||||
public BristlyBillSpineSower(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
||||
this.supertype.add(SuperType.LEGENDARY);
|
||||
this.subtype.add(SubType.PLANT);
|
||||
this.subtype.add(SubType.DRUID);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Landfall -- Whenever a land enters the battlefield under your control, put a +1/+1 counter on target creature.
|
||||
Ability ability = new LandfallAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance()));
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
|
||||
// {3}{G}{G}: Double the number of +1/+1 counters on each creature you control.
|
||||
this.addAbility(new SimpleActivatedAbility(new DoubleCounterOnEachPermanentEffect(
|
||||
CounterType.P1P1, StaticFilters.FILTER_CONTROLLED_CREATURE
|
||||
), new ManaCostsImpl<>("{3}{G}{G}")));
|
||||
}
|
||||
|
||||
private BristlyBillSpineSower(final BristlyBillSpineSower card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BristlyBillSpineSower copy() {
|
||||
return new BristlyBillSpineSower(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -35,6 +35,7 @@ public final class OutlawsOfThunderJunction extends ExpansionSet {
|
|||
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));
|
||||
cards.add(new SetCardInfo("Bristling Backwoods", 253, Rarity.COMMON, mage.cards.b.BristlingBackwoods.class));
|
||||
cards.add(new SetCardInfo("Bristly Bill, Spine Sower", 157, Rarity.MYTHIC, mage.cards.b.BristlyBillSpineSower.class));
|
||||
cards.add(new SetCardInfo("Bruse Tarl, Roving Rancher", 198, Rarity.RARE, mage.cards.b.BruseTarlRovingRancher.class));
|
||||
cards.add(new SetCardInfo("Cactarantula", 158, Rarity.COMMON, mage.cards.c.Cactarantula.class));
|
||||
cards.add(new SetCardInfo("Colossal Rattlewurm", 159, Rarity.RARE, mage.cards.c.ColossalRattlewurm.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue