mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Refactor - changed SnappingDrake and EagleOfTheWatch to only derive from one version for card reorg
This commit is contained in:
parent
671fca15d6
commit
adf9c1bfe0
3 changed files with 7 additions and 18 deletions
|
@ -39,16 +39,12 @@ import mage.cards.CardImpl;
|
||||||
*
|
*
|
||||||
* @author Loki
|
* @author Loki
|
||||||
*/
|
*/
|
||||||
public class SnappingDrake extends CardImpl {
|
public class SnappingDrake extends mage.sets.ravnica.SnappingDrake {
|
||||||
|
|
||||||
public SnappingDrake(UUID ownerId) {
|
public SnappingDrake(UUID ownerId) {
|
||||||
super(ownerId, 72, "Snapping Drake", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{3}{U}");
|
super(ownerId);
|
||||||
|
this.cardNumber = "72";
|
||||||
this.expansionSetCode = "M10";
|
this.expansionSetCode = "M10";
|
||||||
|
|
||||||
this.subtype.add("Drake");
|
|
||||||
this.power = new MageInt(3);
|
|
||||||
this.toughness = new MageInt(2);
|
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public SnappingDrake(final SnappingDrake card) {
|
public SnappingDrake(final SnappingDrake card) {
|
||||||
|
|
|
@ -39,19 +39,12 @@ import mage.constants.Rarity;
|
||||||
*
|
*
|
||||||
* @author LevelX2
|
* @author LevelX2
|
||||||
*/
|
*/
|
||||||
public class EagleOfTheWatch extends CardImpl {
|
public class EagleOfTheWatch extends mage.sets.journeyintonyx.EagleOfTheWatch {
|
||||||
|
|
||||||
public EagleOfTheWatch(UUID ownerId) {
|
public EagleOfTheWatch(UUID ownerId) {
|
||||||
super(ownerId, 275, "Eagle of the Watch", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
super(ownerId);
|
||||||
|
this.cardNumber = "275";
|
||||||
this.expansionSetCode = "ORI";
|
this.expansionSetCode = "ORI";
|
||||||
this.subtype.add("Bird");
|
|
||||||
this.power = new MageInt(2);
|
|
||||||
this.toughness = new MageInt(1);
|
|
||||||
|
|
||||||
// Flying
|
|
||||||
this.addAbility(FlyingAbility.getInstance());
|
|
||||||
// Vigilance
|
|
||||||
this.addAbility(VigilanceAbility.getInstance());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public EagleOfTheWatch(final EagleOfTheWatch card) {
|
public EagleOfTheWatch(final EagleOfTheWatch card) {
|
||||||
|
|
|
@ -33,7 +33,7 @@ import java.util.UUID;
|
||||||
*
|
*
|
||||||
* @author Plopman
|
* @author Plopman
|
||||||
*/
|
*/
|
||||||
public class SnappingDrake extends mage.sets.magic2010.SnappingDrake {
|
public class SnappingDrake extends mage.sets.ravnica.SnappingDrake {
|
||||||
|
|
||||||
public SnappingDrake(UUID ownerId) {
|
public SnappingDrake(UUID ownerId) {
|
||||||
super(ownerId);
|
super(ownerId);
|
||||||
|
|
Loading…
Reference in a new issue