updated Lorescale Coatl triggered ability

This commit is contained in:
Evan Kranzler 2020-06-15 21:43:28 -04:00
parent 00c01408f1
commit 2f211dfe3b

View file

@ -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);
}
}
}