1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 17:00:08 -09:00

Fix spelling of Miss Demeanor's name

I could have sworn I checked the spelling on Scryfall before I started
but here we are.  I blame Noah Webster.
This commit is contained in:
Thomas Winwood 2019-04-08 19:04:45 +01:00
parent c7016c7e22
commit 26bb219183
2 changed files with 12 additions and 12 deletions
Mage.Sets/src/mage

View file

@ -23,9 +23,9 @@ import mage.players.Player;
*
* @author Ketsuban
*/
public final class MissDemeanour extends CardImpl {
public final class MissDemeanor extends CardImpl {
public MissDemeanour(UUID ownerId, CardSetInfo setInfo) {
public MissDemeanor(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{W}");
this.subtype.add(SubType.LADYOFPROPERETIQUETTE);
@ -39,33 +39,33 @@ public final class MissDemeanour extends CardImpl {
this.addAbility(FirstStrikeAbility.getInstance());
// At the beginning of each other player's upkeep, you may compliment that player on their game play. If you don't, sacrifice Miss Demeanour.
this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new MissDemeanourEffect(), TargetController.NOT_YOU, false, true));
this.addAbility(new BeginningOfUpkeepTriggeredAbility(Zone.BATTLEFIELD, new MissDemeanorEffect(), TargetController.NOT_YOU, false, true));
}
public MissDemeanour(final MissDemeanour card) {
public MissDemeanor(final MissDemeanor card) {
super(card);
}
@Override
public MissDemeanour copy() {
return new MissDemeanour(this);
public MissDemeanor copy() {
return new MissDemeanor(this);
}
}
class MissDemeanourEffect extends OneShotEffect {
class MissDemeanorEffect extends OneShotEffect {
public MissDemeanourEffect() {
public MissDemeanorEffect() {
super(Outcome.Sacrifice);
this.staticText = "you may compliment that player on their game play. If you don't, sacrifice {this}";
}
public MissDemeanourEffect(final MissDemeanourEffect effect) {
public MissDemeanorEffect(final MissDemeanorEffect effect) {
super(effect);
}
@Override
public MissDemeanourEffect copy() {
return new MissDemeanourEffect(this);
public MissDemeanorEffect copy() {
return new MissDemeanorEffect(this);
}
@Override

View file

@ -46,7 +46,7 @@ public final class Unglued extends ExpansionSet {
cards.add(new SetCardInfo("Jumbo Imp", 34, Rarity.UNCOMMON, mage.cards.j.JumboImp.class));
cards.add(new SetCardInfo("Krazy Kow", 48, Rarity.COMMON, mage.cards.k.KrazyKow.class));
cards.add(new SetCardInfo("Mine, Mine, Mine!", 65, Rarity.RARE, mage.cards.m.MineMineMine.class));
cards.add(new SetCardInfo("Miss Demeanour", 10, Rarity.UNCOMMON, mage.cards.m.MissDemeanour.class));
cards.add(new SetCardInfo("Miss Demeanor", 10, Rarity.UNCOMMON, mage.cards.m.MissDemeanor.class));
cards.add(new SetCardInfo("Mountain", 87, Rarity.LAND, mage.cards.basiclands.Mountain.class, new CardGraphicInfo(FrameStyle.UGL_FULL_ART_BASIC, false)));
cards.add(new SetCardInfo("Once More with Feeling", 11, Rarity.RARE, mage.cards.o.OnceMoreWithFeeling.class));
cards.add(new SetCardInfo("Paper Tiger", 78, Rarity.COMMON, mage.cards.p.PaperTiger.class));