mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
added phyrexian subtype to applicable creatures
This commit is contained in:
parent
7d07c220b0
commit
cd99beed6e
221 changed files with 221 additions and 4 deletions
|
@ -31,6 +31,7 @@ public final class AscendantEvincar extends CardImpl {
|
||||||
public AscendantEvincar(UUID ownerId, CardSetInfo setInfo) {
|
public AscendantEvincar(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.VAMPIRE);
|
this.subtype.add(SubType.VAMPIRE);
|
||||||
this.subtype.add(SubType.NOBLE);
|
this.subtype.add(SubType.NOBLE);
|
||||||
|
|
||||||
|
|
|
@ -26,6 +26,7 @@ public final class AtraxaPraetorsVoice extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{W}{U}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{G}{W}{U}{B}");
|
||||||
|
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ANGEL);
|
this.subtype.add(SubType.ANGEL);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
|
|
|
@ -30,6 +30,7 @@ public final class BelbeCorruptedObserver extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{B}{G}");
|
||||||
|
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.ELF);
|
this.subtype.add(SubType.ELF);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -19,7 +19,7 @@ public final class BlackcleaveGoblin extends CardImpl {
|
||||||
|
|
||||||
public BlackcleaveGoblin (UUID ownerId, CardSetInfo setInfo) {
|
public BlackcleaveGoblin (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
||||||
this.subtype.add(SubType.GOBLIN, SubType.ZOMBIE);
|
this.subtype.add(SubType.PHYREXIAN, SubType.GOBLIN, SubType.ZOMBIE);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -30,7 +30,7 @@ public final class BladeSplicer extends CardImpl {
|
||||||
|
|
||||||
public BladeSplicer(UUID ownerId, CardSetInfo setInfo) {
|
public BladeSplicer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
|
||||||
this.subtype.add(SubType.HUMAN, SubType.ARTIFICER);
|
this.subtype.add(SubType.PHYREXIAN, SubType.HUMAN, SubType.ARTIFICER);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class BlightMamba extends CardImpl {
|
||||||
|
|
||||||
public BlightMamba (UUID ownerId, CardSetInfo setInfo) {
|
public BlightMamba (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.SNAKE);
|
this.subtype.add(SubType.SNAKE);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -18,7 +18,7 @@ public final class BlightedAgent extends CardImpl {
|
||||||
|
|
||||||
public BlightedAgent(UUID ownerId, CardSetInfo setInfo) {
|
public BlightedAgent(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
|
||||||
this.subtype.add(SubType.HUMAN, SubType.ROGUE);
|
this.subtype.add(SubType.PHYREXIAN, SubType.HUMAN, SubType.ROGUE);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -21,6 +21,7 @@ public final class BlightsteelColossus extends CardImpl {
|
||||||
|
|
||||||
public BlightsteelColossus(UUID ownerId, CardSetInfo setInfo) {
|
public BlightsteelColossus(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{12}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{12}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.GOLEM);
|
this.subtype.add(SubType.GOLEM);
|
||||||
this.power = new MageInt(11);
|
this.power = new MageInt(11);
|
||||||
this.toughness = new MageInt(11);
|
this.toughness = new MageInt(11);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class Blightwidow extends CardImpl {
|
||||||
|
|
||||||
public Blightwidow (UUID ownerId, CardSetInfo setInfo) {
|
public Blightwidow (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.SPIDER);
|
this.subtype.add(SubType.SPIDER);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -30,7 +30,7 @@ public final class BlindZealot extends CardImpl {
|
||||||
|
|
||||||
public BlindZealot(UUID ownerId, CardSetInfo setInfo) {
|
public BlindZealot(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
||||||
this.subtype.add(SubType.HUMAN, SubType.CLERIC);
|
this.subtype.add(SubType.PHYREXIAN, SubType.HUMAN, SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class BlindingSouleater extends CardImpl {
|
||||||
|
|
||||||
public BlindingSouleater(UUID ownerId, CardSetInfo setInfo) {
|
public BlindingSouleater(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CLERIC);
|
this.subtype.add(SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class Blistergrub extends CardImpl {
|
||||||
|
|
||||||
public Blistergrub (UUID ownerId, CardSetInfo setInfo) {
|
public Blistergrub (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -28,6 +28,7 @@ public final class BodySnatcher extends CardImpl {
|
||||||
|
|
||||||
public BodySnatcher(UUID ownerId, CardSetInfo setInfo) {
|
public BodySnatcher(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MINION);
|
this.subtype.add(SubType.MINION);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
|
@ -34,6 +34,7 @@ public final class BoneShredder extends CardImpl {
|
||||||
|
|
||||||
public BoneShredder(UUID ownerId, CardSetInfo setInfo) {
|
public BoneShredder(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MINION);
|
this.subtype.add(SubType.MINION);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -38,6 +38,7 @@ public final class BrudicladTelchorEngineer extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{U}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}{U}{R}");
|
||||||
|
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ARTIFICER);
|
this.subtype.add(SubType.ARTIFICER);
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
|
@ -36,6 +36,7 @@ public final class BrutalizerExarch extends CardImpl {
|
||||||
|
|
||||||
public BrutalizerExarch(UUID ownerId, CardSetInfo setInfo) {
|
public BrutalizerExarch(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CLERIC);
|
this.subtype.add(SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -33,6 +33,7 @@ public final class CarnifexDemon extends CardImpl {
|
||||||
|
|
||||||
public CarnifexDemon(UUID ownerId, CardSetInfo setInfo) {
|
public CarnifexDemon(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DEMON);
|
this.subtype.add(SubType.DEMON);
|
||||||
|
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class CathedralMembrane extends CardImpl {
|
||||||
|
|
||||||
public CathedralMembrane(UUID ownerId, CardSetInfo setInfo) {
|
public CathedralMembrane(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}{W/P}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}{W/P}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.WALL);
|
this.subtype.add(SubType.WALL);
|
||||||
|
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class CausticHound extends CardImpl {
|
||||||
|
|
||||||
public CausticHound (UUID ownerId, CardSetInfo setInfo) {
|
public CausticHound (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class ChainedThroatseeker extends CardImpl {
|
||||||
|
|
||||||
public ChainedThroatseeker(UUID ownerId, CardSetInfo setInfo) {
|
public ChainedThroatseeker(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -32,6 +32,7 @@ public final class ChancellorOfTheAnnex extends CardImpl {
|
||||||
|
|
||||||
public ChancellorOfTheAnnex(UUID ownerId, CardSetInfo setInfo) {
|
public ChancellorOfTheAnnex(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{W}{W}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{W}{W}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ANGEL);
|
this.subtype.add(SubType.ANGEL);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -28,6 +28,7 @@ public final class ChancellorOfTheDross extends CardImpl {
|
||||||
|
|
||||||
public ChancellorOfTheDross(UUID ownerId, CardSetInfo setInfo) {
|
public ChancellorOfTheDross(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.VAMPIRE);
|
this.subtype.add(SubType.VAMPIRE);
|
||||||
|
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
|
|
|
@ -35,6 +35,7 @@ public final class ChancellorOfTheForge extends CardImpl {
|
||||||
|
|
||||||
public ChancellorOfTheForge(UUID ownerId, CardSetInfo setInfo) {
|
public ChancellorOfTheForge(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}{R}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{R}{R}{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.GIANT);
|
this.subtype.add(SubType.GIANT);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -39,6 +39,7 @@ public final class ChancellorOfTheSpires extends CardImpl {
|
||||||
|
|
||||||
public ChancellorOfTheSpires(UUID ownerId, CardSetInfo setInfo) {
|
public ChancellorOfTheSpires(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}{U}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{U}{U}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.SPHINX);
|
this.subtype.add(SubType.SPHINX);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -27,6 +27,7 @@ public final class ChancellorOfTheTangle extends CardImpl {
|
||||||
|
|
||||||
public ChancellorOfTheTangle(UUID ownerId, CardSetInfo setInfo) {
|
public ChancellorOfTheTangle(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{G}{G}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{G}{G}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BEAST);
|
this.subtype.add(SubType.BEAST);
|
||||||
|
|
||||||
this.color.setGreen(true);
|
this.color.setGreen(true);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class CommanderGrevenIlVec extends CardImpl {
|
||||||
public CommanderGrevenIlVec(UUID ownerId, CardSetInfo setInfo) {
|
public CommanderGrevenIlVec(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.WARRIOR);
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ public final class ContagiousNim extends CardImpl {
|
||||||
|
|
||||||
public ContagiousNim (UUID ownerId, CardSetInfo setInfo) {
|
public ContagiousNim (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -18,6 +18,7 @@ public final class CoreProwler extends CardImpl {
|
||||||
|
|
||||||
public CoreProwler(UUID ownerId, CardSetInfo setInfo) {
|
public CoreProwler(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{4}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
|
@ -30,6 +30,7 @@ public final class CorpseCur extends CardImpl {
|
||||||
|
|
||||||
public CorpseCur (UUID ownerId, CardSetInfo setInfo) {
|
public CorpseCur (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
this.toughness = new MageInt(2);
|
this.toughness = new MageInt(2);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class CorruptedHarvester extends CardImpl {
|
||||||
|
|
||||||
public CorruptedHarvester(UUID ownerId, CardSetInfo setInfo) {
|
public CorruptedHarvester(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class CrazedSkirge extends CardImpl {
|
||||||
|
|
||||||
public CrazedSkirge (UUID ownerId, CardSetInfo setInfo) {
|
public CrazedSkirge (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.IMP);
|
this.subtype.add(SubType.IMP);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class Cystbearer extends CardImpl {
|
||||||
|
|
||||||
public Cystbearer(UUID ownerId, CardSetInfo setInfo) {
|
public Cystbearer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BEAST);
|
this.subtype.add(SubType.BEAST);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class DarkslickDrake extends CardImpl {
|
||||||
|
|
||||||
public DarkslickDrake (UUID ownerId, CardSetInfo setInfo) {
|
public DarkslickDrake (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DRAKE);
|
this.subtype.add(SubType.DRAKE);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class DeathHoodCobra extends CardImpl {
|
||||||
|
|
||||||
public DeathHoodCobra(UUID ownerId, CardSetInfo setInfo) {
|
public DeathHoodCobra(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.SNAKE);
|
this.subtype.add(SubType.SNAKE);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -32,6 +32,7 @@ public final class DeceiverExarch extends CardImpl {
|
||||||
|
|
||||||
public DeceiverExarch(UUID ownerId, CardSetInfo setInfo) {
|
public DeceiverExarch(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CLERIC);
|
this.subtype.add(SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class DementiaBat extends CardImpl {
|
||||||
|
|
||||||
public DementiaBat(UUID ownerId, CardSetInfo setInfo) {
|
public DementiaBat(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BAT);
|
this.subtype.add(SubType.BAT);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -29,6 +29,7 @@ public final class DevouringStrossus extends CardImpl {
|
||||||
|
|
||||||
public DevouringStrossus(UUID ownerId, CardSetInfo setInfo) {
|
public DevouringStrossus(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(9);
|
this.power = new MageInt(9);
|
||||||
this.toughness = new MageInt(9);
|
this.toughness = new MageInt(9);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class DrossHopper extends CardImpl {
|
||||||
|
|
||||||
public DrossHopper(UUID ownerId, CardSetInfo setInfo) {
|
public DrossHopper(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class DrossRipper extends CardImpl {
|
||||||
|
|
||||||
public DrossRipper (UUID ownerId, CardSetInfo setInfo) {
|
public DrossRipper (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
|
@ -34,6 +34,7 @@ public final class EasternPaladin extends CardImpl {
|
||||||
|
|
||||||
public EasternPaladin(UUID ownerId, CardSetInfo setInfo) {
|
public EasternPaladin(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.KNIGHT);
|
this.subtype.add(SubType.KNIGHT);
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class EleshNornGrandCenobite extends CardImpl {
|
||||||
public EleshNornGrandCenobite (UUID ownerId, CardSetInfo setInfo) {
|
public EleshNornGrandCenobite (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{W}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{5}{W}{W}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.PRAETOR);
|
this.subtype.add(SubType.PRAETOR);
|
||||||
|
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
|
|
|
@ -30,6 +30,7 @@ public final class EntomberExarch extends CardImpl {
|
||||||
|
|
||||||
public EntomberExarch(UUID ownerId, CardSetInfo setInfo) {
|
public EntomberExarch(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CLERIC);
|
this.subtype.add(SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -35,6 +35,7 @@ public final class ErtaiTheCorrupted extends CardImpl {
|
||||||
public ErtaiTheCorrupted(UUID ownerId, CardSetInfo setInfo) {
|
public ErtaiTheCorrupted(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{W}{U}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{W}{U}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.WIZARD);
|
this.subtype.add(SubType.WIZARD);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -26,6 +26,7 @@ public final class EtchedMonstrosity extends CardImpl {
|
||||||
|
|
||||||
public EtchedMonstrosity(UUID ownerId, CardSetInfo setInfo) {
|
public EtchedMonstrosity(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{5}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.GOLEM);
|
this.subtype.add(SubType.GOLEM);
|
||||||
this.power = new MageInt(10);
|
this.power = new MageInt(10);
|
||||||
this.toughness = new MageInt(10);
|
this.toughness = new MageInt(10);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class Eviscerator extends CardImpl {
|
||||||
|
|
||||||
public Eviscerator(UUID ownerId, CardSetInfo setInfo) {
|
public Eviscerator(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -39,6 +39,7 @@ public final class EzuriClawOfProgress extends CardImpl {
|
||||||
public EzuriClawOfProgress(UUID ownerId, CardSetInfo setInfo) {
|
public EzuriClawOfProgress(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{U}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}{U}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ELF);
|
this.subtype.add(SubType.ELF);
|
||||||
this.subtype.add(SubType.WARRIOR);
|
this.subtype.add(SubType.WARRIOR);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class FallenFerromancer extends CardImpl {
|
||||||
|
|
||||||
public FallenFerromancer(UUID ownerId, CardSetInfo setInfo) {
|
public FallenFerromancer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{R}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.SHAMAN);
|
this.subtype.add(SubType.SHAMAN);
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class FirstSphereGargantua extends CardImpl {
|
||||||
public FirstSphereGargantua(UUID ownerId, CardSetInfo setInfo) {
|
public FirstSphereGargantua(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
|
@ -16,6 +16,7 @@ public final class FlamebornViron extends CardImpl {
|
||||||
|
|
||||||
public FlamebornViron(UUID ownerId, CardSetInfo setInfo) {
|
public FlamebornViron(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{R}{R}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{R}{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
|
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class Flensermite extends CardImpl {
|
||||||
|
|
||||||
public Flensermite (UUID ownerId, CardSetInfo setInfo) {
|
public Flensermite (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.GREMLIN);
|
this.subtype.add(SubType.GREMLIN);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class FleshEaterImp extends CardImpl {
|
||||||
|
|
||||||
public FleshEaterImp(UUID ownerId, CardSetInfo setInfo) {
|
public FleshEaterImp(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.IMP);
|
this.subtype.add(SubType.IMP);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class FleshReaver extends CardImpl {
|
||||||
public FleshReaver(UUID ownerId, CardSetInfo setInfo) {
|
public FleshReaver(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class FumeSpitter extends CardImpl {
|
||||||
|
|
||||||
public FumeSpitter (UUID ownerId, CardSetInfo setInfo) {
|
public FumeSpitter (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class FurnaceScamp extends CardImpl {
|
||||||
|
|
||||||
public FurnaceScamp(UUID ownerId, CardSetInfo setInfo) {
|
public FurnaceScamp(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{R}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BEAST);
|
this.subtype.add(SubType.BEAST);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -21,6 +21,7 @@ public final class Gallowbraid extends CardImpl {
|
||||||
public Gallowbraid(UUID ownerId, CardSetInfo setInfo) {
|
public Gallowbraid(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
this.toughness = new MageInt(5);
|
this.toughness = new MageInt(5);
|
||||||
|
|
|
@ -36,6 +36,7 @@ public final class GethLordOfTheVault extends CardImpl {
|
||||||
public GethLordOfTheVault(UUID ownerId, CardSetInfo setInfo) {
|
public GethLordOfTheVault(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -30,6 +30,7 @@ public final class GlissaTheTraitor extends CardImpl {
|
||||||
public GlissaTheTraitor (UUID ownerId, CardSetInfo setInfo) {
|
public GlissaTheTraitor (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}{G}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}{G}{G}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.ELF);
|
this.subtype.add(SubType.ELF);
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@ public final class GlissasCourier extends CardImpl {
|
||||||
|
|
||||||
public GlissasCourier (UUID ownerId, CardSetInfo setInfo) {
|
public GlissasCourier (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -17,6 +17,7 @@ public final class GlistenerElf extends CardImpl {
|
||||||
|
|
||||||
public GlistenerElf(UUID ownerId, CardSetInfo setInfo) {
|
public GlistenerElf(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ELF);
|
this.subtype.add(SubType.ELF);
|
||||||
this.subtype.add(SubType.WARRIOR);
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class GoreVassal extends CardImpl {
|
||||||
|
|
||||||
public GoreVassal(UUID ownerId, CardSetInfo setInfo) {
|
public GoreVassal(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -31,6 +31,7 @@ public final class GrevenPredatorCaptain extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{R}");
|
||||||
|
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.WARRIOR);
|
this.subtype.add(SubType.WARRIOR);
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -37,6 +37,7 @@ public final class HandOfThePraetors extends CardImpl {
|
||||||
|
|
||||||
public HandOfThePraetors (UUID ownerId, CardSetInfo setInfo) {
|
public HandOfThePraetors (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class HexParasite extends CardImpl {
|
||||||
|
|
||||||
public HexParasite(UUID ownerId, CardSetInfo setInfo) {
|
public HexParasite(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{1}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class HollowDogs extends CardImpl {
|
||||||
|
|
||||||
public HollowDogs(UUID ownerId, CardSetInfo setInfo) {
|
public HollowDogs(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@ public final class IchTekikSalvageSplicer extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{G}");
|
||||||
|
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.ARTIFICER);
|
this.subtype.add(SubType.ARTIFICER);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class IchorRats extends CardImpl {
|
||||||
|
|
||||||
public IchorRats(UUID ownerId, CardSetInfo setInfo) {
|
public IchorRats(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.RAT);
|
this.subtype.add(SubType.RAT);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class IchorclawMyr extends CardImpl {
|
||||||
|
|
||||||
public IchorclawMyr(UUID ownerId, CardSetInfo setInfo) {
|
public IchorclawMyr(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MYR);
|
this.subtype.add(SubType.MYR);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class ImmolatingSouleater extends CardImpl {
|
||||||
|
|
||||||
public ImmolatingSouleater(UUID ownerId, CardSetInfo setInfo) {
|
public ImmolatingSouleater(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -21,6 +21,7 @@ public final class ImpalerShrike extends CardImpl {
|
||||||
|
|
||||||
public ImpalerShrike(UUID ownerId, CardSetInfo setInfo) {
|
public ImpalerShrike(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{U}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BIRD);
|
this.subtype.add(SubType.BIRD);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class InquisitorExarch extends CardImpl {
|
||||||
|
|
||||||
public InquisitorExarch(UUID ownerId, CardSetInfo setInfo) {
|
public InquisitorExarch(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{W}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{W}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CLERIC);
|
this.subtype.add(SubType.CLERIC);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class InsatiableSouleater extends CardImpl {
|
||||||
|
|
||||||
public InsatiableSouleater(UUID ownerId, CardSetInfo setInfo) {
|
public InsatiableSouleater(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.BEAST);
|
this.subtype.add(SubType.BEAST);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -30,6 +30,7 @@ public final class InvaderParasite extends CardImpl {
|
||||||
|
|
||||||
public InvaderParasite(UUID ownerId, CardSetInfo setInfo) {
|
public InvaderParasite(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class JinGitaxiasCoreAugur extends CardImpl {
|
||||||
public JinGitaxiasCoreAugur(UUID ownerId, CardSetInfo setInfo) {
|
public JinGitaxiasCoreAugur(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{8}{U}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{8}{U}{U}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.PRAETOR);
|
this.subtype.add(SubType.PRAETOR);
|
||||||
|
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
|
|
|
@ -42,6 +42,7 @@ public final class KeskitTheFleshSculptor extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{B}");
|
||||||
|
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.ARTIFICER);
|
this.subtype.add(SubType.ARTIFICER);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class KilnWalker extends CardImpl {
|
||||||
|
|
||||||
public KilnWalker(UUID ownerId, CardSetInfo setInfo) {
|
public KilnWalker(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{3}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CONSTRUCT);
|
this.subtype.add(SubType.CONSTRUCT);
|
||||||
|
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
|
|
|
@ -43,6 +43,7 @@ public final class KrrikSonOfYawgmoth extends CardImpl {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B/P}{B/P}{B/P}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B/P}{B/P}{B/P}");
|
||||||
|
|
||||||
this.addSuperType(SuperType.LEGENDARY);
|
this.addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.subtype.add(SubType.MINION);
|
this.subtype.add(SubType.MINION);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -18,6 +18,7 @@ public final class LostLeonin extends CardImpl {
|
||||||
|
|
||||||
public LostLeonin (UUID ownerId, CardSetInfo setInfo) {
|
public LostLeonin (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.CAT);
|
this.subtype.add(SubType.CAT);
|
||||||
this.subtype.add(SubType.SOLDIER);
|
this.subtype.add(SubType.SOLDIER);
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@ public final class LoxodonConvert extends CardImpl {
|
||||||
|
|
||||||
public LoxodonConvert(UUID ownerId, CardSetInfo setInfo) {
|
public LoxodonConvert(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{W}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ELEPHANT);
|
this.subtype.add(SubType.ELEPHANT);
|
||||||
this.subtype.add(SubType.SOLDIER);
|
this.subtype.add(SubType.SOLDIER);
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,7 @@ public final class MaraudingKnight extends CardImpl {
|
||||||
|
|
||||||
public MaraudingKnight(UUID ownerId, CardSetInfo setInfo) {
|
public MaraudingKnight(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.KNIGHT);
|
this.subtype.add(SubType.KNIGHT);
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -28,6 +28,7 @@ public final class MassacreWurm extends CardImpl {
|
||||||
|
|
||||||
public MassacreWurm(UUID ownerId, CardSetInfo setInfo) {
|
public MassacreWurm(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.WURM);
|
this.subtype.add(SubType.WURM);
|
||||||
|
|
||||||
this.power = new MageInt(6);
|
this.power = new MageInt(6);
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class MasterSplicer extends CardImpl {
|
||||||
|
|
||||||
public MasterSplicer(UUID ownerId, CardSetInfo setInfo) {
|
public MasterSplicer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.ARTIFICER);
|
this.subtype.add(SubType.ARTIFICER);
|
||||||
|
|
||||||
|
|
|
@ -31,6 +31,7 @@ public final class MaulSplicer extends CardImpl {
|
||||||
|
|
||||||
public MaulSplicer(UUID ownerId, CardSetInfo setInfo) {
|
public MaulSplicer(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{6}{G}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{6}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HUMAN);
|
this.subtype.add(SubType.HUMAN);
|
||||||
this.subtype.add(SubType.ARTIFICER);
|
this.subtype.add(SubType.ARTIFICER);
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class MoltensteelDragon extends CardImpl {
|
||||||
|
|
||||||
public MoltensteelDragon(UUID ownerId, CardSetInfo setInfo) {
|
public MoltensteelDragon(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}{R/P}{R/P}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{4}{R/P}{R/P}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DRAGON);
|
this.subtype.add(SubType.DRAGON);
|
||||||
|
|
||||||
this.power = new MageInt(4);
|
this.power = new MageInt(4);
|
||||||
|
|
|
@ -21,6 +21,7 @@ public final class Morinfen extends CardImpl {
|
||||||
public Morinfen(UUID ownerId, CardSetInfo setInfo) {
|
public Morinfen(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
||||||
addSuperType(SuperType.LEGENDARY);
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
this.power = new MageInt(5);
|
this.power = new MageInt(5);
|
||||||
this.toughness = new MageInt(4);
|
this.toughness = new MageInt(4);
|
||||||
|
|
|
@ -24,6 +24,7 @@ public final class MortisDogs extends CardImpl {
|
||||||
|
|
||||||
public MortisDogs(UUID ownerId, CardSetInfo setInfo) {
|
public MortisDogs(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.DOG);
|
this.subtype.add(SubType.DOG);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class MycosynthFiend extends CardImpl {
|
||||||
|
|
||||||
public MycosynthFiend(UUID ownerId, CardSetInfo setInfo) {
|
public MycosynthFiend(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{G}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class MyrSire extends CardImpl {
|
||||||
|
|
||||||
public MyrSire (UUID ownerId, CardSetInfo setInfo) {
|
public MyrSire (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MYR);
|
this.subtype.add(SubType.MYR);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class NecrogenScudder extends CardImpl {
|
||||||
|
|
||||||
public NecrogenScudder (UUID ownerId, CardSetInfo setInfo) {
|
public NecrogenScudder (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HORROR);
|
this.subtype.add(SubType.HORROR);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class Necropede extends CardImpl {
|
||||||
|
|
||||||
public Necropede (UUID ownerId, CardSetInfo setInfo) {
|
public Necropede (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{2}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class NestedGhoul extends CardImpl {
|
||||||
|
|
||||||
public NestedGhoul(UUID ownerId, CardSetInfo setInfo) {
|
public NestedGhoul(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.WARRIOR);
|
this.subtype.add(SubType.WARRIOR);
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class Oculus extends CardImpl {
|
||||||
|
|
||||||
public Oculus (UUID ownerId, CardSetInfo setInfo) {
|
public Oculus (UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{U}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.HOMUNCULUS);
|
this.subtype.add(SubType.HOMUNCULUS);
|
||||||
|
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class OgreMenial extends CardImpl {
|
||||||
|
|
||||||
public OgreMenial(UUID ownerId, CardSetInfo setInfo) {
|
public OgreMenial(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{R}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{3}{R}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.OGRE);
|
this.subtype.add(SubType.OGRE);
|
||||||
|
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
|
|
|
@ -19,6 +19,7 @@ public final class OrderOfYawgmoth extends CardImpl {
|
||||||
|
|
||||||
public OrderOfYawgmoth(UUID ownerId, CardSetInfo setInfo) {
|
public OrderOfYawgmoth(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{2}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.KNIGHT);
|
this.subtype.add(SubType.KNIGHT);
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@ public final class PerilousMyr extends CardImpl {
|
||||||
|
|
||||||
public PerilousMyr(UUID ownerId, CardSetInfo setInfo) {
|
public PerilousMyr(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{2}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MYR);
|
this.subtype.add(SubType.MYR);
|
||||||
this.power = new MageInt(1);
|
this.power = new MageInt(1);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class PestilentSouleater extends CardImpl {
|
||||||
|
|
||||||
public PestilentSouleater(UUID ownerId, CardSetInfo setInfo) {
|
public PestilentSouleater(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{5}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{5}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
|
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
|
|
|
@ -22,6 +22,7 @@ public final class PhyrexianBattleflies extends CardImpl {
|
||||||
|
|
||||||
public PhyrexianBattleflies(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianBattleflies(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.INSECT);
|
this.subtype.add(SubType.INSECT);
|
||||||
this.power = new MageInt(0);
|
this.power = new MageInt(0);
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
|
@ -29,6 +29,7 @@ public final class PhyrexianBloodstock extends CardImpl {
|
||||||
|
|
||||||
public PhyrexianBloodstock(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianBloodstock(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{4}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.power = new MageInt(3);
|
this.power = new MageInt(3);
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
|
@ -25,6 +25,7 @@ public final class PhyrexianBroodlings extends CardImpl {
|
||||||
|
|
||||||
public PhyrexianBroodlings(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianBroodlings(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.MINION);
|
this.subtype.add(SubType.MINION);
|
||||||
|
|
||||||
this.power = new MageInt(2);
|
this.power = new MageInt(2);
|
||||||
|
|
|
@ -23,6 +23,7 @@ public final class PhyrexianColossus extends CardImpl {
|
||||||
|
|
||||||
public PhyrexianColossus(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianColossus(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{7}");
|
super(ownerId,setInfo,new CardType[]{CardType.ARTIFACT,CardType.CREATURE},"{7}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.GOLEM);
|
this.subtype.add(SubType.GOLEM);
|
||||||
this.power = new MageInt(8);
|
this.power = new MageInt(8);
|
||||||
this.toughness = new MageInt(8);
|
this.toughness = new MageInt(8);
|
||||||
|
|
|
@ -21,6 +21,7 @@ public final class PhyrexianCrusader extends CardImpl {
|
||||||
|
|
||||||
public PhyrexianCrusader(UUID ownerId, CardSetInfo setInfo) {
|
public PhyrexianCrusader(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{B}{B}");
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{B}{B}");
|
||||||
|
this.subtype.add(SubType.PHYREXIAN);
|
||||||
this.subtype.add(SubType.ZOMBIE);
|
this.subtype.add(SubType.ZOMBIE);
|
||||||
this.subtype.add(SubType.KNIGHT);
|
this.subtype.add(SubType.KNIGHT);
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue