mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Correct creature type order for three cards which have the wrong order. (#8887)
This commit is contained in:
parent
c944410e74
commit
70ea779920
3 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue