foul-magics/Mage.Sets/src/mage/cards/s/SeraphOfTheSuns.java
2018-06-02 17:59:49 +02:00

42 lines
1,004 B
Java

package mage.cards.s;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.abilities.keyword.IndestructibleAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author fireshoes
*/
public final class SeraphOfTheSuns extends CardImpl {
public SeraphOfTheSuns(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{W}{W}");
this.subtype.add(SubType.ANGEL);
this.power = new MageInt(4);
this.toughness = new MageInt(4);
// Flying
this.addAbility(FlyingAbility.getInstance());
// Indestructible
this.addAbility(IndestructibleAbility.getInstance());
}
public SeraphOfTheSuns(final SeraphOfTheSuns card) {
super(card);
}
@Override
public SeraphOfTheSuns copy() {
return new SeraphOfTheSuns(this);
}
}