2016-10-18 04:45:47 +00:00
|
|
|
package mage.cards.[=$cardNameFirstLetter=];
|
2010-11-24 13:54:31 +00:00
|
|
|
|
2013-06-16 12:31:21 +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') {
|
2019-01-02 23:13:58 +00:00
|
|
|
$OUT .= "\nimport mage.abilities.common.PlaneswalkerEntersWithLoyaltyCountersAbility;"
|
2017-06-29 15:55:29 +00:00
|
|
|
}else {
|
|
|
|
$OUT .= "\nimport mage.MageInt;"
|
|
|
|
}
|
2017-09-08 21:02:50 +00:00
|
|
|
}
|
2017-09-07 19:58:55 +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;"
|
|
|
|
}
|
2011-07-16 20:39:57 +00:00
|
|
|
=][=$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;
|
2013-06-16 12:31:21 +00:00
|
|
|
import mage.constants.CardType;
|
2010-11-24 13:54:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
2011-07-13 20:29:20 +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') {
|
2019-01-02 22:18:10 +00:00
|
|
|
$OUT .= "\n this.addAbility(new PlaneswalkerEntersWithLoyaltyCountersAbility($power));";
|
2017-06-29 15:55:29 +00:00
|
|
|
} else {
|
|
|
|
$OUT .= "\n this.power = new MageInt($power);";
|
|
|
|
$OUT .= "\n this.toughness = new MageInt($toughness);";
|
|
|
|
}
|
2011-07-16 20:39:57 +00:00
|
|
|
}
|
|
|
|
=][=$abilities=]
|
2010-11-24 13:54:31 +00:00
|
|
|
}
|
|
|
|
|
2018-12-21 00:22:11 +00:00
|
|
|
private [=$className=](final [=$className=] card) {
|
2010-11-24 13:54:31 +00:00
|
|
|
super(card);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-07-13 20:29:20 +00:00
|
|
|
public [=$className=] copy() {
|
|
|
|
return new [=$className=](this);
|
2010-11-24 13:54:31 +00:00
|
|
|
}
|
|
|
|
}
|