mirror of
https://github.com/correl/mage.git
synced 2024-11-14 11:09:31 +00:00
24 lines
588 B
Cheetah
24 lines
588 B
Cheetah
package mage.sets.[=$set=];
|
|
|
|
import java.util.UUID;
|
|
|
|
/**
|
|
*
|
|
* @author [=$author=]
|
|
*/
|
|
public final class [=$className=][=$landNr=] extends mage.cards.basiclands.[=$className=] {
|
|
|
|
public [=$className=][=$landNr=](UUID ownerId) {
|
|
super(ownerId, [=$cardNumber=]);
|
|
this.expansionSetCode = "[=$expansionSetCode=]";
|
|
}
|
|
|
|
private [=$className=][=$landNr=](final [=$className=][=$landNr=] card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public [=$className=][=$landNr=] copy() {
|
|
return new [=$className=][=$landNr=](this);
|
|
}
|
|
}
|