mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
30 lines
821 B
Cheetah
30 lines
821 B
Cheetah
package mage.cards.[=$cardNameFirstLetter=];
|
|
|
|
import java.util.UUID;
|
|
[=$abilitiesImports=]
|
|
import mage.cards.CardSetInfo;
|
|
import mage.cards.RoomCard;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SpellAbilityType;
|
|
|
|
/**
|
|
*
|
|
* @author [=$author=]
|
|
*/
|
|
public final class [=$className=] extends RoomCard {
|
|
public [=$className=](UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{[=$type=]}, "[=$manaCost=]", "??");
|
|
[= if ($power || $power eq 0) {
|
|
$OUT .= "\n this.power = new MageInt($power);";
|
|
$OUT .= "\n this.toughness = new MageInt($toughness);";} =][=$abilities=]
|
|
}
|
|
|
|
private [=$className=](final [=$className=] card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public [=$className=] copy() {
|
|
return new [=$className=](this);
|
|
}
|
|
}
|