mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Implemented Debtors' Transport
This commit is contained in:
parent
2d44cfa108
commit
c0a6936590
2 changed files with 37 additions and 0 deletions
36
Mage.Sets/src/mage/cards/d/DebtorsTransport.java
Normal file
36
Mage.Sets/src/mage/cards/d/DebtorsTransport.java
Normal file
|
@ -0,0 +1,36 @@
|
|||
package mage.cards.d;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.AfterlifeAbility;
|
||||
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 DebtorsTransport extends CardImpl {
|
||||
|
||||
public DebtorsTransport(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{B}");
|
||||
|
||||
this.subtype.add(SubType.THRULL);
|
||||
this.power = new MageInt(5);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
// Afterlife 2
|
||||
this.addAbility(new AfterlifeAbility(2));
|
||||
}
|
||||
|
||||
private DebtorsTransport(final DebtorsTransport card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DebtorsTransport copy() {
|
||||
return new DebtorsTransport(this);
|
||||
}
|
||||
}
|
|
@ -78,6 +78,7 @@ public final class RavnicaAllegiance extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Coral Commando", 36, Rarity.COMMON, mage.cards.c.CoralCommando.class));
|
||||
cards.add(new SetCardInfo("Cry of the Carnarium", 70, Rarity.UNCOMMON, mage.cards.c.CryOfTheCarnarium.class));
|
||||
cards.add(new SetCardInfo("Cult Guildmage", 164, Rarity.UNCOMMON, mage.cards.c.CultGuildmage.class));
|
||||
cards.add(new SetCardInfo("Debtors' Transport", 72, Rarity.COMMON, mage.cards.d.DebtorsTransport.class));
|
||||
cards.add(new SetCardInfo("Depose // Deploy", 225, Rarity.UNCOMMON, mage.cards.d.DeposeDeploy.class));
|
||||
cards.add(new SetCardInfo("Deputy of Detention", 165, Rarity.RARE, mage.cards.d.DeputyOfDetention.class));
|
||||
cards.add(new SetCardInfo("Domri's Nodorog", 272, Rarity.RARE, mage.cards.d.DomrisNodorog.class));
|
||||
|
|
Loading…
Reference in a new issue