mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Awaken the Ancient - Fixed that enchanted land cannot become a giant.
This commit is contained in:
parent
85b8edf630
commit
738b198922
1 changed files with 103 additions and 103 deletions
|
@ -53,7 +53,7 @@ import mage.target.common.TargetLandPermanent;
|
||||||
*/
|
*/
|
||||||
public class AwakenTheAncient extends CardImpl<AwakenTheAncient> {
|
public class AwakenTheAncient extends CardImpl<AwakenTheAncient> {
|
||||||
|
|
||||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Forest");
|
private static final FilterLandPermanent filter = new FilterLandPermanent("Mountain");
|
||||||
|
|
||||||
static {
|
static {
|
||||||
filter.add(new SubtypePredicate("Mountain"));
|
filter.add(new SubtypePredicate("Mountain"));
|
||||||
|
@ -91,7 +91,7 @@ public class AwakenTheAncient extends CardImpl<AwakenTheAncient> {
|
||||||
private class GiantToken extends Token {
|
private class GiantToken extends Token {
|
||||||
|
|
||||||
GiantToken() {
|
GiantToken() {
|
||||||
super("", "7/7 red Giant creature with haste");
|
super("Giant", "7/7 red Giant creature with haste");
|
||||||
cardType.add(CardType.CREATURE);
|
cardType.add(CardType.CREATURE);
|
||||||
color.setRed(true);
|
color.setRed(true);
|
||||||
subtype.add("Giant");
|
subtype.add("Giant");
|
||||||
|
|
Loading…
Reference in a new issue