forked from External/mage
I was tired of the "overridable method call in constructor" warning and card classes should be final anyway
37 lines
940 B
Java
37 lines
940 B
Java
package mage.cards.p;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.costs.mana.ManaCostsImpl;
|
|
import mage.abilities.keyword.EternalizeAbility;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
|
|
public final class ProvenCombatant extends CardImpl {
|
|
|
|
public ProvenCombatant(UUID ownerId, CardSetInfo cardSetInfo){
|
|
super(ownerId, cardSetInfo, new CardType[]{CardType.CREATURE}, "{U}");
|
|
|
|
|
|
subtype.add(SubType.HUMAN);
|
|
subtype.add(SubType.WARRIOR);
|
|
|
|
power = new MageInt(1);
|
|
toughness = new MageInt(1);
|
|
|
|
//Eternalize 4UU
|
|
addAbility(new EternalizeAbility(new ManaCostsImpl("{4}{U}{U}"), this));
|
|
}
|
|
|
|
public ProvenCombatant(final ProvenCombatant provenCombatant){
|
|
super(provenCombatant);
|
|
}
|
|
|
|
public ProvenCombatant copy(){
|
|
return new ProvenCombatant(this);
|
|
}
|
|
|
|
|
|
}
|