mirror of
https://github.com/correl/mage.git
synced 2025-04-08 17:00:07 -09:00
[40K] Implemented Venomcrawler
This commit is contained in:
parent
217aa2ecaf
commit
99b99bb7db
2 changed files with 45 additions and 0 deletions
Mage.Sets/src/mage
44
Mage.Sets/src/mage/cards/v/Venomcrawler.java
Normal file
44
Mage.Sets/src/mage/cards/v/Venomcrawler.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
package mage.cards.v;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesCreatureTriggeredAbility;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
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 Venomcrawler extends CardImpl {
|
||||
|
||||
public Venomcrawler(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{3}{B}");
|
||||
|
||||
this.subtype.add(SubType.DEMON);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Lifelink
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
|
||||
// Devourer of Souls -- Whenever another creature dies, put a +1/+1 counter on Venomcrawler.
|
||||
this.addAbility(new DiesCreatureTriggeredAbility(
|
||||
new AddCountersSourceEffect(CounterType.P1P1.createInstance()), false, true
|
||||
).withFlavorWord("Devourer of Souls"));
|
||||
}
|
||||
|
||||
private Venomcrawler(final Venomcrawler card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Venomcrawler copy() {
|
||||
return new Venomcrawler(this);
|
||||
}
|
||||
}
|
|
@ -110,6 +110,7 @@ public final class Warhammer40000 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Tyranid Prime", 145, Rarity.RARE, mage.cards.t.TyranidPrime.class));
|
||||
cards.add(new SetCardInfo("Tyrant Guard", 103, Rarity.RARE, mage.cards.t.TyrantGuard.class));
|
||||
cards.add(new SetCardInfo("Unclaimed Territory", 304, Rarity.UNCOMMON, mage.cards.u.UnclaimedTerritory.class));
|
||||
cards.add(new SetCardInfo("Venomcrawler", 68, Rarity.RARE, mage.cards.v.Venomcrawler.class));
|
||||
cards.add(new SetCardInfo("Venomthrope", 147, Rarity.UNCOMMON, mage.cards.v.Venomthrope.class));
|
||||
cards.add(new SetCardInfo("Warstorm Surge", 209, Rarity.RARE, mage.cards.w.WarstormSurge.class));
|
||||
cards.add(new SetCardInfo("Wayfarer's Bauble", 261, Rarity.COMMON, mage.cards.w.WayfarersBauble.class));
|
||||
|
|
Loading…
Add table
Reference in a new issue