mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[SNC] Implemented Glittermonger
This commit is contained in:
parent
d9188802c8
commit
20084490a4
2 changed files with 41 additions and 0 deletions
40
Mage.Sets/src/mage/cards/g/Glittermonger.java
Normal file
40
Mage.Sets/src/mage/cards/g/Glittermonger.java
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.game.permanent.token.TreasureToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Glittermonger extends CardImpl {
|
||||
|
||||
public Glittermonger(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{G}");
|
||||
|
||||
this.subtype.add(SubType.ELF);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// {T}: Create a Treasure token.
|
||||
this.addAbility(new SimpleActivatedAbility(new CreateTokenEffect(new TreasureToken()), new TapSourceCost()));
|
||||
}
|
||||
|
||||
private Glittermonger(final Glittermonger card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Glittermonger copy() {
|
||||
return new Glittermonger(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -108,6 +108,7 @@ public final class StreetsOfNewCapenna extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Gathering Throng", 13, Rarity.COMMON, mage.cards.g.GatheringThrong.class));
|
||||
cards.add(new SetCardInfo("Getaway Car", 237, Rarity.RARE, mage.cards.g.GetawayCar.class));
|
||||
cards.add(new SetCardInfo("Gilded Pinions", 238, Rarity.COMMON, mage.cards.g.GildedPinions.class));
|
||||
cards.add(new SetCardInfo("Glittermonger", 149, Rarity.COMMON, mage.cards.g.Glittermonger.class));
|
||||
cards.add(new SetCardInfo("Goldhound", 108, Rarity.COMMON, mage.cards.g.Goldhound.class));
|
||||
cards.add(new SetCardInfo("Graveyard Shift", 81, Rarity.UNCOMMON, mage.cards.g.GraveyardShift.class));
|
||||
cards.add(new SetCardInfo("Grisly Sigil", 82, Rarity.UNCOMMON, mage.cards.g.GrislySigil.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue