Libraryeater and Canplayfromexile

extend canplayfromgraveyard with canplayfromexile
libraryeater for undead alchemist
This commit is contained in:
Anthony Calosa
2015-11-05 07:16:49 +08:00
parent 525453d677
commit 4f54e30e0e
8 changed files with 67 additions and 36 deletions

View File

@@ -213,7 +213,7 @@ public:
COUNTERS = 30,
PUT_INTO_PLAY_WITH_KICKER = 31,
STANDARD_FIZZLER = 32,
CASTINGRAVEYARD_COST = 33,
CASTINGRAVEEXILE_COST = 33,
};
};

View File

@@ -237,7 +237,8 @@ class Constants
PAYZERO = 119,
TRINISPHERE = 120,
CANPLAYFROMEXILE = 121,
NB_BASIC_ABILITIES = 122,
LIBRARYEATER = 122,
NB_BASIC_ABILITIES = 123,
RARITY_S = 'S', //Special Rarity

View File

@@ -184,7 +184,7 @@ public:
MTGPlayFromGraveyardRule(GameObserver* observer, int _id);
const string getMenuText()
{
return "Cast Card From Graveyard";
return "Cast Card From This Zone";
}
virtual MTGPlayFromGraveyardRule * clone() const;
};