mirror of
https://github.com/correl/mage.git
synced 2025-03-29 17:00:07 -09:00
Implemented Crashing Footfalls
This commit is contained in:
parent
b41745ef9f
commit
a7d86c6c09
2 changed files with 38 additions and 0 deletions
Mage.Sets/src/mage
37
Mage.Sets/src/mage/cards/c/CrashingFootfalls.java
Normal file
37
Mage.Sets/src/mage/cards/c/CrashingFootfalls.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.c;
|
||||
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.abilities.keyword.SuspendAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.game.permanent.token.RhinoToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class CrashingFootfalls extends CardImpl {
|
||||
|
||||
public CrashingFootfalls(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "");
|
||||
this.color.setGreen(true);
|
||||
|
||||
// Suspend 4—{G}
|
||||
this.addAbility(new SuspendAbility(4, new ManaCostsImpl("{G}"), this));
|
||||
|
||||
// Create two 4/4 green Rhino creature tokens with trample.
|
||||
this.getSpellAbility().addEffect(new CreateTokenEffect(new RhinoToken(), 2));
|
||||
}
|
||||
|
||||
private CrashingFootfalls(final CrashingFootfalls card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CrashingFootfalls copy() {
|
||||
return new CrashingFootfalls(this);
|
||||
}
|
||||
}
|
|
@ -44,6 +44,7 @@ public final class ModernHorizons extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Cloudshredder Sliver", 195, Rarity.RARE, mage.cards.c.CloudshredderSliver.class));
|
||||
cards.add(new SetCardInfo("Collected Conjuring", 196, Rarity.RARE, mage.cards.c.CollectedConjuring.class));
|
||||
cards.add(new SetCardInfo("Collector Ouphe", 158, Rarity.RARE, mage.cards.c.CollectorOuphe.class));
|
||||
cards.add(new SetCardInfo("Crashing Footfalls", 160, Rarity.RARE, mage.cards.c.CrashingFootfalls.class));
|
||||
cards.add(new SetCardInfo("Crypt Rats", 84, Rarity.UNCOMMON, mage.cards.c.CryptRats.class));
|
||||
cards.add(new SetCardInfo("Deep Forest Hermit", 161, Rarity.RARE, mage.cards.d.DeepForestHermit.class));
|
||||
cards.add(new SetCardInfo("Diabolic Edict", 87, Rarity.COMMON, mage.cards.d.DiabolicEdict.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue