forked from External/mage
added cardNumber to card - updated some cards
This commit is contained in:
parent
04f92628c2
commit
44785178bf
546 changed files with 572 additions and 466 deletions
|
|
@ -40,12 +40,11 @@ import mage.cards.CardImpl;
|
|||
*/
|
||||
public abstract class BasicLand<T extends BasicLand<T>> extends CardImpl<T> {
|
||||
|
||||
public BasicLand(UUID ownerId, String name, ManaAbility mana) {
|
||||
super(ownerId, name, Rarity.LAND, new CardType[]{CardType.LAND}, null);
|
||||
public BasicLand(UUID ownerId, int cardNumber, String name, ManaAbility mana) {
|
||||
super(ownerId, cardNumber, name, Rarity.LAND, new CardType[]{CardType.LAND}, null);
|
||||
this.supertype.add("Basic");
|
||||
this.subtype.add(name);
|
||||
this.addAbility(mana);
|
||||
setExpansionSetCode("M11");
|
||||
}
|
||||
|
||||
public BasicLand(BasicLand land) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue