mirror of
https://github.com/magefree/mage.git
synced 2025-12-30 07:22:03 -08:00
updated Lotus Cobra ability to match errata
This commit is contained in:
parent
e85d549011
commit
9c6ac4d58e
1 changed files with 4 additions and 7 deletions
|
|
@ -1,8 +1,5 @@
|
|||
|
||||
|
||||
package mage.cards.l;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.LandfallAbility;
|
||||
import mage.abilities.effects.mana.AddManaOfAnyColorEffect;
|
||||
|
|
@ -11,21 +8,22 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public final class LotusCobra extends CardImpl {
|
||||
|
||||
public LotusCobra(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
||||
this.subtype.add(SubType.SNAKE);
|
||||
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// Landfall — Whenever a land enters the battlefield under your control, you may add one mana of any color.
|
||||
this.addAbility(new LandfallAbility(new AddManaOfAnyColorEffect(), true));
|
||||
this.addAbility(new LandfallAbility(new AddManaOfAnyColorEffect(), false));
|
||||
}
|
||||
|
||||
public LotusCobra(final LotusCobra card) {
|
||||
|
|
@ -36,5 +34,4 @@ public final class LotusCobra extends CardImpl {
|
|||
public LotusCobra copy() {
|
||||
return new LotusCobra(this);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue