Fixed Issue 128

This commit is contained in:
North 2011-05-24 23:02:36 +03:00
parent 42188e6ab0
commit fb80e6df45
2 changed files with 19 additions and 19 deletions

View file

@ -28,28 +28,17 @@
package mage.sets.elspethvstezzeret;
import java.util.UUID;
import mage.Constants.CardType;
import mage.Constants.Rarity;
import mage.MageInt;
import mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility;
import mage.abilities.effects.common.DrawCardAllEffect;
import mage.cards.CardImpl;
/**
*
* @author North
*/
public class RunedServitor extends CardImpl<RunedServitor> {
public class RunedServitor extends mage.sets.riseoftheeldrazi.RunedServitor {
public RunedServitor(UUID ownerId) {
super(ownerId, 42, "Runed Servitor", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
this.expansionSetCode = "DDF";
this.subtype.add("Construct");
this.power = new MageInt(2);
this.toughness = new MageInt(2);
this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new DrawCardAllEffect(1), false));
super(ownerId);
this.cardNumber = 42;
this.expansionSetCode = "ROE";
}
public RunedServitor(final RunedServitor card) {

View file

@ -28,17 +28,28 @@
package mage.sets.riseoftheeldrazi;
import java.util.UUID;
import mage.Constants.CardType;
import mage.Constants.Rarity;
import mage.MageInt;
import mage.abilities.common.PutIntoGraveFromBattlefieldTriggeredAbility;
import mage.abilities.effects.common.DrawCardAllEffect;
import mage.cards.CardImpl;
/**
*
* @author North
*/
public class RunedServitor extends mage.sets.elspethvstezzeret.RunedServitor {
public class RunedServitor extends CardImpl<RunedServitor> {
public RunedServitor(UUID ownerId) {
super(ownerId);
this.cardNumber = 74;
this.expansionSetCode = "ROE";
super(ownerId, 224, "Runed Servitor", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
this.expansionSetCode = "DDF";
this.subtype.add("Construct");
this.power = new MageInt(2);
this.toughness = new MageInt(2);
this.addAbility(new PutIntoGraveFromBattlefieldTriggeredAbility(new DrawCardAllEffect(1), false));
}
public RunedServitor(final RunedServitor card) {