forked from External/mage
[BLC] Implement Scurry of Squirrels
This commit is contained in:
parent
4bffb68ec9
commit
c09d2d9ff8
2 changed files with 51 additions and 0 deletions
50
Mage.Sets/src/mage/cards/s/ScurryOfSquirrels.java
Normal file
50
Mage.Sets/src/mage/cards/s/ScurryOfSquirrels.java
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DealsCombatDamageToAPlayerTriggeredAbility;
|
||||
import mage.abilities.effects.common.counter.AddCountersTargetEffect;
|
||||
import mage.abilities.keyword.MyriadAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.counters.CounterType;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ScurryOfSquirrels extends CardImpl {
|
||||
|
||||
public ScurryOfSquirrels(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.SQUIRREL);
|
||||
this.subtype.add(SubType.SCOUT);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Myriad
|
||||
this.addAbility(new MyriadAbility());
|
||||
|
||||
// Myriad
|
||||
this.addAbility(new MyriadAbility());
|
||||
|
||||
// Whenever Scurry of Squirrels deals combat damage to a player, put a +1/+1 counter on target creature you control.
|
||||
Ability ability = new DealsCombatDamageToAPlayerTriggeredAbility(new AddCountersTargetEffect(CounterType.P1P1.createInstance()));
|
||||
ability.addTarget(new TargetControlledCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private ScurryOfSquirrels(final ScurryOfSquirrels card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ScurryOfSquirrels copy() {
|
||||
return new ScurryOfSquirrels(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -64,6 +64,7 @@ public final class BloomburrowCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Rapid Hybridization", 111, Rarity.UNCOMMON, mage.cards.r.RapidHybridization.class));
|
||||
cards.add(new SetCardInfo("Rites of Flourishing", 122, Rarity.RARE, mage.cards.r.RitesOfFlourishing.class));
|
||||
cards.add(new SetCardInfo("Saw in Half", 113, Rarity.RARE, mage.cards.s.SawInHalf.class));
|
||||
cards.add(new SetCardInfo("Scurry of Squirrels", 33, Rarity.RARE, mage.cards.s.ScurryOfSquirrels.class));
|
||||
cards.add(new SetCardInfo("Second Harvest", 123, Rarity.RARE, mage.cards.s.SecondHarvest.class));
|
||||
cards.add(new SetCardInfo("Sol Ring", 129, Rarity.UNCOMMON, mage.cards.s.SolRing.class));
|
||||
cards.add(new SetCardInfo("Squirrel Mob", 85, Rarity.RARE, mage.cards.s.SquirrelMob.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue