forked from External/mage
42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
|
|
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.common.SimpleActivatedAbility;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.effects.common.RegenerateSourceEffect;
|
|
import mage.abilities.keyword.EchoAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
*
|
|
* @author Backfir3
|
|
*/
|
|
public final class AlbinoTroll extends CardImpl {
|
|
|
|
public AlbinoTroll(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId,setInfo,new CardType[]{CardType.CREATURE},"{1}{G}");
|
|
this.subtype.add(SubType.TROLL);
|
|
|
|
this.power = new MageInt(3);
|
|
this.toughness = new MageInt(3);
|
|
this.addAbility(new EchoAbility("{1}{G}"));
|
|
this.addAbility(new SimpleActivatedAbility(new RegenerateSourceEffect(), new ManaCostsImpl<>("{1}{G}")));
|
|
}
|
|
|
|
private AlbinoTroll(final AlbinoTroll card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public AlbinoTroll copy() {
|
|
return new AlbinoTroll(this);
|
|
}
|
|
|
|
}
|