mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Rename WreathofGeists
This commit is contained in:
parent
70c302b0e4
commit
40368bc569
2 changed files with 7 additions and 6 deletions
|
@ -23,9 +23,9 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*
|
||||
* @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}");
|
||||
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)));
|
||||
}
|
||||
|
||||
public WreathofGeists(final WreathofGeists card) {
|
||||
public WreathOfGeists(final WreathOfGeists card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public WreathofGeists copy() {
|
||||
return new WreathofGeists(this);
|
||||
public WreathOfGeists copy() {
|
||||
return new WreathOfGeists(this);
|
||||
}
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.cards.w.WreathOfGeists;
|
||||
import mage.constants.Rarity;
|
||||
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("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("Wreath of Geists", 211, Rarity.UNCOMMON, mage.cards.w.WreathofGeists.class));
|
||||
cards.add(new SetCardInfo("Wreath of Geists", 211, Rarity.UNCOMMON, WreathOfGeists.class));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue