mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
add essence symbiote
This commit is contained in:
parent
d9fef33b06
commit
a5e3b93048
2 changed files with 35 additions and 0 deletions
34
Mage.Sets/src/mage/cards/e/EssenceSymbiote.java
Normal file
34
Mage.Sets/src/mage/cards/e/EssenceSymbiote.java
Normal file
|
@ -0,0 +1,34 @@
|
|||
package mage.cards.e;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.constants.SubType;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author gp66
|
||||
*/
|
||||
public final class EssenceSymbiote extends CardImpl {
|
||||
|
||||
public EssenceSymbiote(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
|
||||
this.subtype.add(SubType.BEAST);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever a creature you control mutates, put a +1/+1 counter on that creature and you gain 2 life.
|
||||
}
|
||||
|
||||
private EssenceSymbiote(final EssenceSymbiote card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EssenceSymbiote copy() {
|
||||
return new EssenceSymbiote(this);
|
||||
}
|
||||
}
|
|
@ -158,6 +158,7 @@ public final class IkoriaLairOfBehemoths extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Emergent Ultimatum", 333, Rarity.RARE, mage.cards.e.EmergentUltimatum.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Escape Protocol", 48, Rarity.UNCOMMON, mage.cards.e.EscapeProtocol.class));
|
||||
cards.add(new SetCardInfo("Essence Scatter", 49, Rarity.COMMON, mage.cards.e.EssenceScatter.class));
|
||||
cards.add(new SetCardInfo("Essence Symbiote", 149, Rarity.COMMON, mage.cards.e.EssenceSymbiote.class));
|
||||
cards.add(new SetCardInfo("Everquill Phoenix", 114, Rarity.RARE, mage.cards.e.EverquillPhoenix.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Everquill Phoenix", 292, Rarity.RARE, mage.cards.e.EverquillPhoenix.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Everquill Phoenix", 374, Rarity.RARE, mage.cards.e.EverquillPhoenix.class, NON_FULL_USE_VARIOUS));
|
||||
|
|
Loading…
Reference in a new issue