diff --git a/Mage.Sets/src/mage/cards/l/LorescaleCoatl.java b/Mage.Sets/src/mage/cards/l/LorescaleCoatl.java index 45a24b501ab..80077d3d8f5 100644 --- a/Mage.Sets/src/mage/cards/l/LorescaleCoatl.java +++ b/Mage.Sets/src/mage/cards/l/LorescaleCoatl.java @@ -1,8 +1,5 @@ - - package mage.cards.l; -import java.util.UUID; import mage.MageInt; import mage.abilities.common.DrawCardControllerTriggeredAbility; import mage.abilities.effects.common.counter.AddCountersSourceEffect; @@ -12,25 +9,26 @@ import mage.constants.CardType; import mage.constants.SubType; import mage.counters.CounterType; +import java.util.UUID; + /** - * * @author Loki */ public final class LorescaleCoatl extends CardImpl { - public LorescaleCoatl (UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}{U}"); + public LorescaleCoatl(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}{U}"); this.subtype.add(SubType.SNAKE); - - this.power = new MageInt(2); this.toughness = new MageInt(2); - this.addAbility(new DrawCardControllerTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), true)); + this.addAbility(new DrawCardControllerTriggeredAbility( + new AddCountersSourceEffect(CounterType.P1P1.createInstance()), false + )); } - public LorescaleCoatl (final LorescaleCoatl card) { + private LorescaleCoatl(final LorescaleCoatl card) { super(card); } @@ -38,4 +36,4 @@ public final class LorescaleCoatl extends CardImpl { public LorescaleCoatl copy() { return new LorescaleCoatl(this); } -} \ No newline at end of file +}