diff --git a/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java b/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java index bcb9a1f779..802e369442 100644 --- a/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java +++ b/Mage.Sets/src/mage/sets/theros/ThassaGodOfTheSea.java @@ -83,9 +83,6 @@ public class ThassaGodOfTheSea extends CardImpl { Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new CantBeBlockedTargetEffect(Duration.EndOfTurn), new ManaCostsImpl("{1}{U}")); ability.addTarget(new TargetControlledCreaturePermanent(true)); this.addAbility(ability); - - - } public ThassaGodOfTheSea(final ThassaGodOfTheSea card) { @@ -97,19 +94,3 @@ public class ThassaGodOfTheSea extends CardImpl { return new ThassaGodOfTheSea(this); } } - - -class ThassaGodOfTheSeaToken extends Token { - - public ThassaGodOfTheSeaToken() { - super("Cleric", "2/1 white Cleric enchantment creature"); - this.cardType.add(CardType.CREATURE); - this.cardType.add(CardType.ENCHANTMENT); - - this.subtype.add("Cleric"); - this.color.isWhite(); - - this.power = new MageInt(2); - this.toughness = new MageInt(1); - } -}