mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
[ZNR] Implemented Tajuru Blightblade
This commit is contained in:
parent
08e691cc0d
commit
b0a992e446
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/t/TajuruBlightblade.java
Normal file
37
Mage.Sets/src/mage/cards/t/TajuruBlightblade.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.t;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.SubType;
|
||||
import mage.abilities.keyword.DeathtouchAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class TajuruBlightblade extends CardImpl {
|
||||
|
||||
public TajuruBlightblade(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}");
|
||||
|
||||
this.subtype.add(SubType.ELF);
|
||||
this.subtype.add(SubType.ROGUE);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Deathtouch
|
||||
this.addAbility(DeathtouchAbility.getInstance());
|
||||
}
|
||||
|
||||
private TajuruBlightblade(final TajuruBlightblade card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TajuruBlightblade copy() {
|
||||
return new TajuruBlightblade(this);
|
||||
}
|
||||
}
|
|
@ -42,5 +42,6 @@ public final class ZendikarRising extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Shepherd of Heroes", 38, Rarity.COMMON, mage.cards.s.ShepherdOfHeroes.class));
|
||||
cards.add(new SetCardInfo("Spoils of Adventure", 237, Rarity.UNCOMMON, mage.cards.s.SpoilsOfAdventure.class));
|
||||
cards.add(new SetCardInfo("Swamp", 273, Rarity.LAND, mage.cards.basiclands.Swamp.class, FULL_ART_BFZ_VARIOUS));
|
||||
cards.add(new SetCardInfo("Tajuru Blightblade", 208, Rarity.COMMON, mage.cards.t.TajuruBlightblade.class));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue