updated GRN spoiler

This commit is contained in:
Evan Kranzler 2018-09-19 11:54:27 -04:00
parent a2f30079bb
commit 8ae3c9862a
4 changed files with 17 additions and 10 deletions

View file

@ -19,7 +19,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
*
* @author TheElk801
*/
public final class GargoyleGuardian extends CardImpl {
public final class GatekeeperGargoyle extends CardImpl {
private static final FilterPermanent filter = new FilterControlledPermanent();
@ -27,7 +27,7 @@ public final class GargoyleGuardian extends CardImpl {
filter.add(new SubtypePredicate(SubType.GATE));
}
public GargoyleGuardian(UUID ownerId, CardSetInfo setInfo) {
public GatekeeperGargoyle(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT, CardType.CREATURE}, "{6}");
this.subtype.add(SubType.GARGOYLE);
@ -46,12 +46,12 @@ public final class GargoyleGuardian extends CardImpl {
));
}
public GargoyleGuardian(final GargoyleGuardian card) {
public GatekeeperGargoyle(final GatekeeperGargoyle card) {
super(card);
}
@Override
public GargoyleGuardian copy() {
return new GargoyleGuardian(this);
public GatekeeperGargoyle copy() {
return new GatekeeperGargoyle(this);
}
}

View file

@ -34,7 +34,7 @@ public final class LedevChampion extends CardImpl {
public LedevChampion(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{W}");
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.ELF);
this.subtype.add(SubType.KNIGHT);
this.power = new MageInt(2);
this.toughness = new MageInt(2);

View file

@ -85,8 +85,8 @@ public final class GuildsOfRavnica extends ExpansionSet {
cards.add(new SetCardInfo("Flower // Flourish", 226, Rarity.UNCOMMON, mage.cards.f.FlowerFlourish.class));
cards.add(new SetCardInfo("Forest", 264, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Fresh-Faced Recruit", 216, Rarity.COMMON, mage.cards.f.FreshFacedRecruit.class));
cards.add(new SetCardInfo("Gargoyle Guardian", 235, Rarity.UNCOMMON, mage.cards.g.GargoyleGuardian.class));
cards.add(new SetCardInfo("Garrison Sergeant", 172, Rarity.COMMON, mage.cards.g.GarrisonSergeant.class));
cards.add(new SetCardInfo("Gatekeeper Gargoyle", 235, Rarity.UNCOMMON, mage.cards.g.GatekeeperGargoyle.class));
cards.add(new SetCardInfo("Gateway Plaza", 247, Rarity.COMMON, mage.cards.g.GatewayPlaza.class));
cards.add(new SetCardInfo("Generous Stray", 129, Rarity.COMMON, mage.cards.g.GenerousStray.class));
cards.add(new SetCardInfo("Gird for Battle", 12, Rarity.UNCOMMON, mage.cards.g.GirdForBattle.class));