forked from External/mage
38 lines
888 B
Java
38 lines
888 B
Java
|
|
package mage.cards.o;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.mana.GreenManaAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
/**
|
|
* @author Loki
|
|
*/
|
|
public final class OrochiSustainer extends CardImpl {
|
|
|
|
public OrochiSustainer(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{G}");
|
|
this.subtype.add(SubType.SNAKE);
|
|
this.subtype.add(SubType.SHAMAN);
|
|
|
|
this.power = new MageInt(1);
|
|
this.toughness = new MageInt(2);
|
|
|
|
// {T}: Add {G}.
|
|
this.addAbility(new GreenManaAbility());
|
|
}
|
|
|
|
private OrochiSustainer(final OrochiSustainer card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public OrochiSustainer copy() {
|
|
return new OrochiSustainer(this);
|
|
}
|
|
|
|
}
|