mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
...
This commit is contained in:
parent
c94c978a6a
commit
5bc45757c8
5 changed files with 5 additions and 52 deletions
|
|
@ -35,7 +35,7 @@ import mage.abilities.mana.GreenManaAbility;
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class Forest extends BasicLand<Forest> {
|
public abstract class Forest extends BasicLand<Forest> {
|
||||||
|
|
||||||
public Forest(UUID ownerId) {
|
public Forest(UUID ownerId) {
|
||||||
super(ownerId, "Forest", new GreenManaAbility());
|
super(ownerId, "Forest", new GreenManaAbility());
|
||||||
|
|
@ -45,14 +45,4 @@ public class Forest extends BasicLand<Forest> {
|
||||||
super(land);
|
super(land);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Forest copy() {
|
|
||||||
return new Forest(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import mage.abilities.mana.BlueManaAbility;
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class Island extends BasicLand<Island> {
|
public abstract class Island extends BasicLand<Island> {
|
||||||
|
|
||||||
public Island(UUID ownerId) {
|
public Island(UUID ownerId) {
|
||||||
super(ownerId, "Island", new BlueManaAbility());
|
super(ownerId, "Island", new BlueManaAbility());
|
||||||
|
|
@ -45,14 +45,4 @@ public class Island extends BasicLand<Island> {
|
||||||
super(land);
|
super(land);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Island copy() {
|
|
||||||
return new Island(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import mage.abilities.mana.RedManaAbility;
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class Mountain extends BasicLand<Mountain> {
|
public abstract class Mountain extends BasicLand<Mountain> {
|
||||||
|
|
||||||
public Mountain(UUID ownerId) {
|
public Mountain(UUID ownerId) {
|
||||||
super(ownerId, "Mountain", new RedManaAbility());
|
super(ownerId, "Mountain", new RedManaAbility());
|
||||||
|
|
@ -45,13 +45,4 @@ public class Mountain extends BasicLand<Mountain> {
|
||||||
super(land);
|
super(land);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Mountain copy() {
|
|
||||||
return new Mountain(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import mage.abilities.mana.WhiteManaAbility;
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class Plains extends BasicLand<Plains> {
|
public abstract class Plains extends BasicLand<Plains> {
|
||||||
|
|
||||||
public Plains(UUID ownerId) {
|
public Plains(UUID ownerId) {
|
||||||
super(ownerId, "Plains", new WhiteManaAbility());
|
super(ownerId, "Plains", new WhiteManaAbility());
|
||||||
|
|
@ -45,13 +45,4 @@ public class Plains extends BasicLand<Plains> {
|
||||||
super(land);
|
super(land);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Plains copy() {
|
|
||||||
return new Plains(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@ import mage.abilities.mana.BlackManaAbility;
|
||||||
*
|
*
|
||||||
* @author BetaSteward_at_googlemail.com
|
* @author BetaSteward_at_googlemail.com
|
||||||
*/
|
*/
|
||||||
public class Swamp extends BasicLand<Swamp> {
|
public abstract class Swamp extends BasicLand<Swamp> {
|
||||||
|
|
||||||
public Swamp(UUID ownerId) {
|
public Swamp(UUID ownerId) {
|
||||||
super(ownerId, "Swamp", new BlackManaAbility());
|
super(ownerId, "Swamp", new BlackManaAbility());
|
||||||
|
|
@ -45,13 +45,4 @@ public class Swamp extends BasicLand<Swamp> {
|
||||||
super(land);
|
super(land);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public Swamp copy() {
|
|
||||||
return new Swamp(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getArt() {
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue