Correct creature type order for three cards which have the wrong order. (#8887)

This commit is contained in:
Grath 2022-04-27 19:41:36 -04:00 committed by GitHub
parent c944410e74
commit 70ea779920
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -26,7 +26,7 @@ import mage.game.permanent.Permanent;
*/
public final class GuardianOfTheAges extends CardImpl {
public GuardianOfTheAges(UUID ownerId, CardSetInfo setInfo){
super(ownerId,setInfo,new CardType[]{CardType.CREATURE,CardType.ARTIFACT},"{7}");
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{7}");
this.subtype.add(SubType.GOLEM);
this.power = new MageInt(7);

View file

@ -20,8 +20,8 @@ import mage.target.TargetStackObject;
public final class MirrorshellCrab extends CardImpl {
public MirrorshellCrab(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE,CardType.ARTIFACT}, "{5}{U}{U}");
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT,CardType.CREATURE}, "{5}{U}{U}");
this.subtype.add(SubType.CRAB);
this.power = new MageInt(5);
this.toughness = new MageInt(7);

View file

@ -17,7 +17,7 @@ import mage.constants.SubType;
public final class Ornithopter extends CardImpl {
public Ornithopter(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.CREATURE,CardType.ARTIFACT},"{0}");
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{0}");
this.subtype.add(SubType.THOPTER);
this.power = new MageInt(0);
this.toughness = new MageInt(2);