mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +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> {
|
||||
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Forest");
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent("Mountain");
|
||||
|
||||
static {
|
||||
filter.add(new SubtypePredicate("Mountain"));
|
||||
|
@ -91,7 +91,7 @@ public class AwakenTheAncient extends CardImpl<AwakenTheAncient> {
|
|||
private class GiantToken extends Token {
|
||||
|
||||
GiantToken() {
|
||||
super("", "7/7 red Giant creature with haste");
|
||||
super("Giant", "7/7 red Giant creature with haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
subtype.add("Giant");
|
||||
|
|
Loading…
Reference in a new issue