mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[PIP] Implement Viridescent Bog
This commit is contained in:
parent
729915da0d
commit
f8534de09f
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/v/ViridescentBog.java
Normal file
37
Mage.Sets/src/mage/cards/v/ViridescentBog.java
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.v;
|
||||
|
||||
import mage.Mana;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.costs.mana.GenericManaCost;
|
||||
import mage.abilities.mana.SimpleManaAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Zone;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class ViridescentBog extends CardImpl {
|
||||
|
||||
public ViridescentBog(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.LAND}, "");
|
||||
|
||||
// {1}, {T}: Add {B}{G}.
|
||||
Ability ability = new SimpleManaAbility(Zone.BATTLEFIELD, new Mana(0, 0, 1, 0, 1, 0, 0, 0), new GenericManaCost(1));
|
||||
ability.addCost(new TapSourceCost());
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
private ViridescentBog(final ViridescentBog card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViridescentBog copy() {
|
||||
return new ViridescentBog(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -157,6 +157,7 @@ public final class Fallout extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Vandalblast", 355, Rarity.UNCOMMON, mage.cards.v.Vandalblast.class));
|
||||
cards.add(new SetCardInfo("Vault 101: Birthday Party", 28, Rarity.RARE, mage.cards.v.Vault101BirthdayParty.class));
|
||||
cards.add(new SetCardInfo("Vigor", 347, Rarity.RARE, mage.cards.v.Vigor.class));
|
||||
cards.add(new SetCardInfo("Viridescent Bog", 154, Rarity.RARE, mage.cards.v.ViridescentBog.class));
|
||||
cards.add(new SetCardInfo("Walking Ballista", 352, Rarity.RARE, mage.cards.w.WalkingBallista.class));
|
||||
cards.add(new SetCardInfo("War Room", 1068, Rarity.RARE, mage.cards.w.WarRoom.class));
|
||||
cards.add(new SetCardInfo("Wasteland", 361, Rarity.RARE, mage.cards.w.Wasteland.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue