mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 12:19:59 -08:00
[ECL] Implement Noggle Robber
This commit is contained in:
parent
d4c008f0e1
commit
93a8d99150
3 changed files with 41 additions and 0 deletions
39
Mage.Sets/src/mage/cards/n/NoggleRobber.java
Normal file
39
Mage.Sets/src/mage/cards/n/NoggleRobber.java
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.n;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldOrDiesSourceTriggeredAbility;
|
||||
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 NoggleRobber extends CardImpl {
|
||||
|
||||
public NoggleRobber(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{R/G}{R/G}");
|
||||
|
||||
this.subtype.add(SubType.NOGGLE);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// When this creature enters or dies, create a Treasure token.
|
||||
this.addAbility(new EntersBattlefieldOrDiesSourceTriggeredAbility(new CreateTokenEffect(new TreasureToken()), false));
|
||||
}
|
||||
|
||||
private NoggleRobber(final NoggleRobber card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public NoggleRobber copy() {
|
||||
return new NoggleRobber(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -144,6 +144,7 @@ public final class LorwynEclipsed extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Mountain", 282, Rarity.LAND, mage.cards.basiclands.Mountain.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mutable Explorer", 186, Rarity.RARE, mage.cards.m.MutableExplorer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Mutable Explorer", 327, Rarity.RARE, mage.cards.m.MutableExplorer.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Noggle Robber", 237, Rarity.UNCOMMON, mage.cards.n.NoggleRobber.class));
|
||||
cards.add(new SetCardInfo("Overgrown Tomb", "350b", Rarity.RARE, mage.cards.o.OvergrownTomb.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Overgrown Tomb", 266, Rarity.RARE, mage.cards.o.OvergrownTomb.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Overgrown Tomb", 350, Rarity.RARE, mage.cards.o.OvergrownTomb.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
|
|||
|
|
@ -60958,6 +60958,7 @@ Hovel Hurler|Lorwyn Eclipsed|230|U|{3}{R/W}{R/W}|Creature - Giant Warrior|6|7|Th
|
|||
Kirol, Attentive First-Year|Lorwyn Eclipsed|231|R|{1}{R/W}{R/W}|Legendary Creature - Vampire Cleric|3|3|Tap two untapped creatures you control: Copy target triggered ability you control. You may choose new targets for the copy. Activate only once each turn.|
|
||||
Lluwen, Imperfect Naturalist|Lorwyn Eclipsed|232|R|{B/G}{B/G}|Legendary Creature - Elf Druid|1|3|When Lluwen enters, mill four cards, then you may put a creature or land card from among the milled cards on top of your library.${2}{B/G}{B/G}{B/G}, {T}, Discard a land card: Create a 1/1 black and green Worm creature token for each land card in your graveyard.|
|
||||
Maralen, Fae Ascendant|Lorwyn Eclipsed|233|R|{2}{B}{G}{U}|Legendary Creature - Elf Faerie Noble|4|5|Flying$Whenever Maralen or another Elf or Faerie you control enters, exile the top two cards of target opponent's library.$Once each turn, you may cast a spell with mana value less than or equal to the number of Elves and Faeries you control from among cards exiled with Maralen this turn without paying its mana cost.|
|
||||
Noggle Robber|Lorwyn Eclipsed|237|U|{1}{R/G}{R/G}|Creature - Noggle Rogue|3|3|When this creature enters or dies, create a Treasure token.|
|
||||
Prideful Feastling|Lorwyn Eclipsed|238|C|{2}{W/B}|Creature - Shapeshifter|2|3|Changeling$Lifelink|
|
||||
Sanar, Innovative First-Year|Lorwyn Eclipsed|241|R|{2}{U/R}{U/R}|Legendary Creature - Goblin Sorcerer|2|4|Vivid -- At the beginning of your first main phase, reveal cards from the top of your library until you reveal X nonland cards, where X is the number of colors among permanents you control. For each of those colors, you may exile a card of that color from among the revealed cards. Then shuffle. You may cast the exiled cards this turn.|
|
||||
Sygg's Command|Lorwyn Eclipsed|244|R|{1}{W}{U}|Kindred Sorcery - Merfolk|||Choose two --$* Create a token that's a copy of target Merfolk you control.$* Creatures target player controls gain lifelink until end of turn.$* Target player draws a card.$* Tap target creature. Put a stun counter on it.|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue