mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
[SNC] Implemented Ziatora's Proving Ground
This commit is contained in:
parent
7deb8de3c1
commit
0c745e0a44
2 changed files with 49 additions and 0 deletions
48
Mage.Sets/src/mage/cards/z/ZiatorasProvingGround.java
Normal file
48
Mage.Sets/src/mage/cards/z/ZiatorasProvingGround.java
Normal file
|
@ -0,0 +1,48 @@
|
|||
package mage.cards.z;
|
||||
|
||||
import mage.abilities.common.EntersBattlefieldTappedAbility;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.keyword.CyclingAbility;
|
||||
import mage.abilities.mana.BlackManaAbility;
|
||||
import mage.abilities.mana.GreenManaAbility;
|
||||
import mage.abilities.mana.RedManaAbility;
|
||||
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 ZiatorasProvingGround extends CardImpl {
|
||||
|
||||
public ZiatorasProvingGround(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
this.subtype.add(SubType.SWAMP);
|
||||
this.subtype.add(SubType.MOUNTAIN);
|
||||
this.subtype.add(SubType.FOREST);
|
||||
|
||||
// ({T}: Add {B}, {R}, or {G}.)
|
||||
this.addAbility(new BlackManaAbility());
|
||||
this.addAbility(new RedManaAbility());
|
||||
this.addAbility(new GreenManaAbility());
|
||||
|
||||
// Ziatora's Proving Ground enters the battlefield tapped.
|
||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||
|
||||
// Cycling {3}
|
||||
this.addAbility(new CyclingAbility(new GenericManaCost(3)));
|
||||
}
|
||||
|
||||
private ZiatorasProvingGround(final ZiatorasProvingGround card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZiatorasProvingGround copy() {
|
||||
return new ZiatorasProvingGround(this);
|
||||
}
|
||||
}
|
|
@ -28,5 +28,6 @@ public final class StreetsOfNewCapenna extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Raffine's Tower", 254, Rarity.RARE, mage.cards.r.RaffinesTower.class));
|
||||
cards.add(new SetCardInfo("Swamp", 276, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Xander's Lounge", 260, Rarity.RARE, mage.cards.x.XandersLounge.class));
|
||||
cards.add(new SetCardInfo("Ziatora's Proving Ground", 261, Rarity.RARE, mage.cards.z.ZiatorasProvingGround.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue