forked from External/mage
...
This commit is contained in:
parent
df642c2bd5
commit
3fa0e8b8f4
544 changed files with 13327 additions and 3074 deletions
|
|
@ -37,7 +37,7 @@ import mage.cards.CardImpl;
|
|||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
*/
|
||||
public class BasicLand extends CardImpl {
|
||||
public abstract class BasicLand<T extends BasicLand<T>> extends CardImpl<T> {
|
||||
|
||||
public BasicLand(UUID ownerId, String name, ManaAbility mana) {
|
||||
super(ownerId, name, new CardType[]{CardType.LAND}, null);
|
||||
|
|
@ -45,5 +45,9 @@ public class BasicLand extends CardImpl {
|
|||
this.subtype.add(name);
|
||||
this.addAbility(mana);
|
||||
}
|
||||
|
||||
public BasicLand(BasicLand land) {
|
||||
super(land);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue