mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
updated templates for card creation
This commit is contained in:
parent
3d749ba8e7
commit
889662b741
4 changed files with 4 additions and 4 deletions
|
@ -50,7 +50,7 @@ import mage.constants.CardType;
|
|||
*
|
||||
* @author [=$author=]
|
||||
*/
|
||||
public class [=$className=] extends CardImpl {
|
||||
public final class [=$className=] extends CardImpl {
|
||||
|
||||
public [=$className=](UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{[=$type=]}, "[=$manaCost=]");
|
||||
|
|
|
@ -33,7 +33,7 @@ import java.util.UUID;[= if ($rarityExtended) {$OUT .= "\nimport mage.constants.
|
|||
*
|
||||
* @author [=$author=]
|
||||
*/
|
||||
public class [=$className=] extends mage.sets.[=$baseSet=].[=$className=] {
|
||||
public final class [=$className=] extends mage.sets.[=$baseSet=].[=$className=] {
|
||||
|
||||
public [=$className=](UUID ownerId) {
|
||||
super(ownerId);
|
||||
|
|
|
@ -33,7 +33,7 @@ import java.util.UUID;
|
|||
*
|
||||
* @author [=$author=]
|
||||
*/
|
||||
public class [=$className=][=$landNr=] extends mage.cards.basiclands.[=$className=] {
|
||||
public final class [=$className=][=$landNr=] extends mage.cards.basiclands.[=$className=] {
|
||||
|
||||
public [=$className=][=$landNr=](UUID ownerId) {
|
||||
super(ownerId, [=$cardNumber=]);
|
||||
|
|
|
@ -38,7 +38,7 @@ import mage.constants.SpellAbilityType;
|
|||
*
|
||||
* @author [=$author=]
|
||||
*/
|
||||
public class [=$className=] extends SplitCard {
|
||||
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=]
|
||||
|
|
Loading…
Reference in a new issue