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

View file

@ -28,17 +28,28 @@
package mage.sets.riseoftheeldrazi; package mage.sets.riseoftheeldrazi;
import java.util.UUID; 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 * @author North
*/ */
public class RunedServitor extends mage.sets.elspethvstezzeret.RunedServitor { public class RunedServitor extends CardImpl<RunedServitor> {
public RunedServitor(UUID ownerId) { public RunedServitor(UUID ownerId) {
super(ownerId); super(ownerId, 224, "Runed Servitor", Rarity.UNCOMMON, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
this.cardNumber = 74; this.expansionSetCode = "DDF";
this.expansionSetCode = "ROE"; 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) { public RunedServitor(final RunedServitor card) {