[EMN] Added 6/27 spoilers to mtg-cards-data.txt Fixed Thalia's translated name.

This commit is contained in:
fireshoes 2016-06-27 11:40:00 -05:00
parent 05ff3d18bf
commit 744e303265
3 changed files with 30 additions and 13 deletions

View file

@ -33,20 +33,20 @@ import java.util.UUID;
*
* @author fireshoes
*/
public class ThaliaHereticalCathar extends mage.sets.mediainserts.ThaliaHereticalCathar {
public class ThaliaHereticCathar extends mage.sets.mediainserts.ThaliaHereticCathar {
public ThaliaHereticalCathar(UUID ownerId) {
public ThaliaHereticCathar(UUID ownerId) {
super(ownerId);
this.cardNumber = 46;
this.expansionSetCode = "EMN";
}
public ThaliaHereticalCathar(final ThaliaHereticalCathar card) {
public ThaliaHereticCathar(final ThaliaHereticCathar card) {
super(card);
}
@Override
public ThaliaHereticalCathar copy() {
return new ThaliaHereticalCathar(this);
public ThaliaHereticCathar copy() {
return new ThaliaHereticCathar(this);
}
}

View file

@ -48,10 +48,10 @@ import mage.game.permanent.Permanent;
*
* @author fireshoes
*/
public class ThaliaHereticalCathar extends CardImpl {
public class ThaliaHereticCathar extends CardImpl {
public ThaliaHereticalCathar(UUID ownerId) {
super(ownerId, 156, "Thalia, Heretical Cathar", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{W}");
public ThaliaHereticCathar(UUID ownerId) {
super(ownerId, 156, "Thalia, Heretic Cathar", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{2}{W}");
this.expansionSetCode = "MBP";
this.supertype.add("Legendary");
this.subtype.add("Human");
@ -66,13 +66,13 @@ public class ThaliaHereticalCathar extends CardImpl {
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new ThaliaTapEffect()));
}
public ThaliaHereticalCathar(final ThaliaHereticalCathar card) {
public ThaliaHereticCathar(final ThaliaHereticCathar card) {
super(card);
}
@Override
public ThaliaHereticalCathar copy() {
return new ThaliaHereticalCathar(this);
public ThaliaHereticCathar copy() {
return new ThaliaHereticCathar(this);
}
}