Rename WreathofGeists

This commit is contained in:
Noah Gleason 2018-07-10 23:18:48 -04:00
parent 70c302b0e4
commit 40368bc569
No known key found for this signature in database
GPG key ID: EC030EC6B0650A40
2 changed files with 7 additions and 6 deletions

View file

@ -23,9 +23,9 @@ import mage.target.common.TargetCreaturePermanent;
* *
* @author nantuko * @author nantuko
*/ */
public final class WreathofGeists extends CardImpl { public final class WreathOfGeists extends CardImpl {
public WreathofGeists(UUID ownerId, CardSetInfo setInfo) { public WreathOfGeists(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{G}"); super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{G}");
this.subtype.add(SubType.AURA); this.subtype.add(SubType.AURA);
@ -43,12 +43,12 @@ public final class WreathofGeists extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(value, value))); this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostEnchantedEffect(value, value)));
} }
public WreathofGeists(final WreathofGeists card) { public WreathOfGeists(final WreathOfGeists card) {
super(card); super(card);
} }
@Override @Override
public WreathofGeists copy() { public WreathOfGeists copy() {
return new WreathofGeists(this); return new WreathOfGeists(this);
} }
} }

View file

@ -2,6 +2,7 @@
package mage.sets; package mage.sets;
import mage.cards.ExpansionSet; import mage.cards.ExpansionSet;
import mage.cards.w.WreathOfGeists;
import mage.constants.Rarity; import mage.constants.Rarity;
import mage.constants.SetType; import mage.constants.SetType;
@ -309,7 +310,7 @@ public final class Innistrad extends ExpansionSet {
cards.add(new SetCardInfo("Wooden Stake", 237, Rarity.COMMON, mage.cards.w.WoodenStake.class)); cards.add(new SetCardInfo("Wooden Stake", 237, Rarity.COMMON, mage.cards.w.WoodenStake.class));
cards.add(new SetCardInfo("Woodland Cemetery", 249, Rarity.RARE, mage.cards.w.WoodlandCemetery.class)); cards.add(new SetCardInfo("Woodland Cemetery", 249, Rarity.RARE, mage.cards.w.WoodlandCemetery.class));
cards.add(new SetCardInfo("Woodland Sleuth", 210, Rarity.COMMON, mage.cards.w.WoodlandSleuth.class)); cards.add(new SetCardInfo("Woodland Sleuth", 210, Rarity.COMMON, mage.cards.w.WoodlandSleuth.class));
cards.add(new SetCardInfo("Wreath of Geists", 211, Rarity.UNCOMMON, mage.cards.w.WreathofGeists.class)); cards.add(new SetCardInfo("Wreath of Geists", 211, Rarity.UNCOMMON, WreathOfGeists.class));
} }
} }