mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
35 lines
1 KiB
Cheetah
35 lines
1 KiB
Cheetah
package mage.cards.[=$cardNameFirstLetter=];
|
|
|
|
import java.util.UUID;
|
|
[=$abilitiesImports=]
|
|
import mage.cards.CardSetInfo;
|
|
import mage.cards.SplitCard;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SpellAbilityType;
|
|
|
|
/**
|
|
*
|
|
* @author [=$author=]
|
|
*/
|
|
public final class [=$className=] extends SplitCard {
|
|
public [=$className=](UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{[=$type=]}, new CardType[]{??}, "[=$manaCost=]", "??", SpellAbilityType.SPLIT_AFTERMATH);
|
|
[=$subType=][=$colors=]
|
|
[= if ($power || $power eq 0) {
|
|
$OUT .= "\n this.power = new MageInt($power);";
|
|
$OUT .= "\n this.toughness = new MageInt($toughness);";} =][=$abilities=]
|
|
// getLeftHalfCard().getSpellAbility().addEffect(new Effect());
|
|
|
|
// getRightHalfCard().getSpellAbility().addEffect(new Effect());
|
|
|
|
}
|
|
|
|
private [=$className=](final [=$className=] card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public [=$className=] copy() {
|
|
return new [=$className=](this);
|
|
}
|
|
}
|