mage/Utils/cardClass.tmpl

51 lines
1.3 KiB
Cheetah
Raw Normal View History

2016-10-18 04:45:47 +00:00
package mage.cards.[=$cardNameFirstLetter=];
2010-11-24 13:54:31 +00:00
import java.util.UUID;[=
2011-07-25 19:27:27 +00:00
if ($power || $power eq 0) {
2017-07-03 06:58:48 +00:00
if ($planeswalker eq 'true') {
$OUT .= "\nimport mage.abilities.common.PlanswalkerEntersWithLoyalityCountersAbility;"
}else {
$OUT .= "\nimport mage.MageInt;"
}
2017-09-08 21:02:50 +00:00
}
if ($hasSubTypes eq 'true') {
$OUT .="\nimport mage.constants.SubType;"
}
2017-09-07 22:20:16 +00:00
if ($hasSuperTypes eq 'true') {
$OUT .="\nimport mage.constants.SuperType;"
}
=][=$abilitiesImports=]
2010-11-24 13:54:31 +00:00
import mage.cards.CardImpl;
2016-10-18 04:45:47 +00:00
import mage.cards.CardSetInfo;
import mage.constants.CardType;
2010-11-24 13:54:31 +00:00
/**
*
* @author [=$author=]
2010-11-24 13:54:31 +00:00
*/
2018-05-21 15:14:45 +00:00
public final class [=$className=] extends CardImpl {
2010-11-24 13:54:31 +00:00
2016-10-18 04:45:47 +00:00
public [=$className=](UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{[=$type=]}, "[=$manaCost=]");
[=$subType=][=$colors=][=
2011-07-25 19:27:27 +00:00
if ($power || $power eq 0) {
2017-07-03 06:58:48 +00:00
if ($planeswalker eq 'true') {
$OUT .= "\n this.addAbility(new PlanswalkerEntersWithLoyalityCountersAbility($power));";
} else {
$OUT .= "\n this.power = new MageInt($power);";
$OUT .= "\n this.toughness = new MageInt($toughness);";
}
}
=][=$abilities=]
2010-11-24 13:54:31 +00:00
}
public [=$className=](final [=$className=] card) {
2010-11-24 13:54:31 +00:00
super(card);
}
@Override
public [=$className=] copy() {
return new [=$className=](this);
2010-11-24 13:54:31 +00:00
}
}