mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
implement [EOE] Illvoi Operative
This commit is contained in:
parent
cbecec2a9d
commit
bb5e74bfb5
2 changed files with 42 additions and 0 deletions
41
Mage.Sets/src/mage/cards/i/IllvoiOperative.java
Normal file
41
Mage.Sets/src/mage/cards/i/IllvoiOperative.java
Normal file
|
|
@ -0,0 +1,41 @@
|
||||||
|
package mage.cards.i;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
import mage.abilities.common.CastSecondSpellTriggeredAbility;
|
||||||
|
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||||
|
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 Susucr
|
||||||
|
*/
|
||||||
|
public final class IllvoiOperative extends CardImpl {
|
||||||
|
|
||||||
|
public IllvoiOperative(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{U}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.JELLYFISH);
|
||||||
|
this.subtype.add(SubType.ROGUE);
|
||||||
|
this.power = new MageInt(2);
|
||||||
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
|
// Whenever you cast your second spell each turn, put a +1/+1 counter on this creature.
|
||||||
|
this.addAbility(new CastSecondSpellTriggeredAbility(
|
||||||
|
new AddCountersSourceEffect(CounterType.P1P1.createInstance(1))
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
private IllvoiOperative(final IllvoiOperative card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public IllvoiOperative copy() {
|
||||||
|
return new IllvoiOperative(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -154,6 +154,7 @@ public final class EdgeOfEternities extends ExpansionSet {
|
||||||
cards.add(new SetCardInfo("Illvoi Galeblade", 58, Rarity.COMMON, mage.cards.i.IllvoiGaleblade.class));
|
cards.add(new SetCardInfo("Illvoi Galeblade", 58, Rarity.COMMON, mage.cards.i.IllvoiGaleblade.class));
|
||||||
cards.add(new SetCardInfo("Illvoi Infiltrator", 59, Rarity.UNCOMMON, mage.cards.i.IllvoiInfiltrator.class));
|
cards.add(new SetCardInfo("Illvoi Infiltrator", 59, Rarity.UNCOMMON, mage.cards.i.IllvoiInfiltrator.class));
|
||||||
cards.add(new SetCardInfo("Illvoi Light Jammer", 60, Rarity.COMMON, mage.cards.i.IllvoiLightJammer.class));
|
cards.add(new SetCardInfo("Illvoi Light Jammer", 60, Rarity.COMMON, mage.cards.i.IllvoiLightJammer.class));
|
||||||
|
cards.add(new SetCardInfo("Illvoi Operative", 61, Rarity.COMMON, mage.cards.i.IllvoiOperative.class));
|
||||||
cards.add(new SetCardInfo("Infinite Guideline Station", 219, Rarity.RARE, mage.cards.i.InfiniteGuidelineStation.class, NON_FULL_USE_VARIOUS));
|
cards.add(new SetCardInfo("Infinite Guideline Station", 219, Rarity.RARE, mage.cards.i.InfiniteGuidelineStation.class, NON_FULL_USE_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Infinite Guideline Station", 348, Rarity.RARE, mage.cards.i.InfiniteGuidelineStation.class, NON_FULL_USE_VARIOUS));
|
cards.add(new SetCardInfo("Infinite Guideline Station", 348, Rarity.RARE, mage.cards.i.InfiniteGuidelineStation.class, NON_FULL_USE_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Insatiable Skittermaw", 108, Rarity.COMMON, mage.cards.i.InsatiableSkittermaw.class));
|
cards.add(new SetCardInfo("Insatiable Skittermaw", 108, Rarity.COMMON, mage.cards.i.InsatiableSkittermaw.class));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue