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