mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
Implemented Glowstone Recluse
This commit is contained in:
parent
8b1e84a78c
commit
2f37de4549
2 changed files with 51 additions and 0 deletions
50
Mage.Sets/src/mage/cards/g/GlowstoneRecluse.java
Normal file
50
Mage.Sets/src/mage/cards/g/GlowstoneRecluse.java
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
package mage.cards.g;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.MutatesSourceTriggeredAbility;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.keyword.MutateAbility;
|
||||
import mage.abilities.keyword.ReachAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.counters.CounterType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class GlowstoneRecluse extends CardImpl {
|
||||
|
||||
public GlowstoneRecluse(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.SPIDER);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Mutate {3}{G}
|
||||
this.addAbility(new MutateAbility(this, "{3}{G}"));
|
||||
|
||||
// Reach
|
||||
this.addAbility(ReachAbility.getInstance());
|
||||
|
||||
// Whenever this creature mutates, put two +1/+1 counters on it.
|
||||
this.addAbility(new MutatesSourceTriggeredAbility(
|
||||
new AddCountersSourceEffect(
|
||||
CounterType.P1P1.createInstance(2)
|
||||
).setText("put two +1/+1 counters on it")
|
||||
));
|
||||
}
|
||||
|
||||
private GlowstoneRecluse(final GlowstoneRecluse card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public GlowstoneRecluse copy() {
|
||||
return new GlowstoneRecluse(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -32,6 +32,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Essence Scatter", 49, Rarity.COMMON, mage.cards.e.EssenceScatter.class));
|
||||
cards.add(new SetCardInfo("Fully Grown", 154, Rarity.COMMON, mage.cards.f.FullyGrown.class));
|
||||
cards.add(new SetCardInfo("Gloom Pangolin", 89, Rarity.COMMON, mage.cards.g.GloomPangolin.class));
|
||||
cards.add(new SetCardInfo("Glowstone Recluse", 156, Rarity.UNCOMMON, mage.cards.g.GlowstoneRecluse.class));
|
||||
cards.add(new SetCardInfo("Grimdancer", 90, Rarity.UNCOMMON, mage.cards.g.Grimdancer.class));
|
||||
cards.add(new SetCardInfo("Indatha Crystal", 235, Rarity.COMMON, mage.cards.i.IndathaCrystal.class));
|
||||
cards.add(new SetCardInfo("Ketria Crystal", 236, Rarity.COMMON, mage.cards.k.KetriaCrystal.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue