mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 04:12:14 -08:00
[LCI] Implement Synapse Necromage
This commit is contained in:
parent
657eac40cf
commit
b0659a978e
2 changed files with 40 additions and 0 deletions
39
Mage.Sets/src/mage/cards/s/SynapseNecromage.java
Normal file
39
Mage.Sets/src/mage/cards/s/SynapseNecromage.java
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
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.FungusCantBlockToken;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class SynapseNecromage extends CardImpl {
|
||||
|
||||
public SynapseNecromage(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||
|
||||
this.subtype.add(SubType.FUNGUS);
|
||||
this.subtype.add(SubType.WIZARD);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// When Synapse Necromage dies, create two 1/1 black Fungus creature tokens with "This creature can't block."
|
||||
this.addAbility(new DiesSourceTriggeredAbility(new CreateTokenEffect(new FungusCantBlockToken(), 2)));
|
||||
}
|
||||
|
||||
private SynapseNecromage(final SynapseNecromage card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynapseNecromage copy() {
|
||||
return new SynapseNecromage(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -140,6 +140,7 @@ public final class TheLostCavernsOfIxalan extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Sunbird Standard", 262, Rarity.UNCOMMON, mage.cards.s.SunbirdStandard.class));
|
||||
cards.add(new SetCardInfo("Swamp", 289, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Swamp", 397, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Synapse Necromage", 125, Rarity.UNCOMMON, mage.cards.s.SynapseNecromage.class));
|
||||
cards.add(new SetCardInfo("Temple of Civilization", 26, Rarity.MYTHIC, mage.cards.t.TempleOfCivilization.class));
|
||||
cards.add(new SetCardInfo("Temple of Power", 158, Rarity.MYTHIC, mage.cards.t.TempleOfPower.class));
|
||||
cards.add(new SetCardInfo("Temple of the Dead", 88, Rarity.MYTHIC, mage.cards.t.TempleOfTheDead.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue