mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[40K] Implemented Venomthrope
This commit is contained in:
parent
82250a430d
commit
a4f59d8493
2 changed files with 45 additions and 0 deletions
44
Mage.Sets/src/mage/cards/v/Venomthrope.java
Normal file
44
Mage.Sets/src/mage/cards/v/Venomthrope.java
Normal file
|
@ -0,0 +1,44 @@
|
|||
package mage.cards.v;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.HexproofAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Venomthrope extends CardImpl {
|
||||
|
||||
public Venomthrope(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{U}");
|
||||
|
||||
this.subtype.add(SubType.TYRANID);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Deathtouch
|
||||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
|
||||
// Hexproof
|
||||
this.addAbility(HexproofAbility.getInstance());
|
||||
}
|
||||
|
||||
private Venomthrope(final Venomthrope card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Venomthrope copy() {
|
||||
return new Venomthrope(this);
|
||||
}
|
||||
}
|
|
@ -70,5 +70,6 @@ public final class Warhammer40000 extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Thornwood Falls", 302, Rarity.COMMON, mage.cards.t.ThornwoodFalls.class));
|
||||
cards.add(new SetCardInfo("Tyranid Prime", 145, Rarity.RARE, mage.cards.t.TyranidPrime.class));
|
||||
cards.add(new SetCardInfo("Unclaimed Territory", 304, Rarity.UNCOMMON, mage.cards.u.UnclaimedTerritory.class));
|
||||
cards.add(new SetCardInfo("Venomthrope", 147, Rarity.UNCOMMON, mage.cards.v.Venomthrope.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue